@import url("https://fonts.googleapis.com/css2?family=Exile&family=Nata+Sans:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Nata Sans", sans-serif;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: #fafdf3;
  cursor: none;
}

body::-webkit-scrollbar {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

.max-width {
  max-width: 1200px;
  margin: 0rem auto;
  overflow: hidden;
}

.cursor-dot {
  width: 5px;
  height: 5px;
  background-color: #ff0202;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid hsla(0, 1000%, 50%, 0.5);
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 200;
  pointer-events: none;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .max-width {
    max-width: 100%;
    margin: 0rem;
    overflow: hidden;
  }
  .max-width::-webkit-scrollbar {
    display: none;
  }
}
/* MOBILE VIEW NAV LINK MENU */
.nav-btn {
  cursor: pointer;
}

.toggle {
  position: relative;
  width: 3rem;
  height: 2.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.toggle span {
  position: absolute;
  width: 2rem;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.5s;
}

.toggle span:nth-child(1) {
  transform: translateY(-7px);
  width: 1.5rem;
  left: 8px;
}

.toggle.active span:nth-child(1) {
  width: 1.5rem;
  transform: translateY(0px) rotate(45deg);
  transition-delay: 0.125s;
  background-color: #fff;
}

.toggle span:nth-child(2) {
  transform: translateY(7px);
  width: 0.9rem;
  left: 8px;
}

.toggle.active span:nth-child(2) {
  width: 1.5rem;
  transform: translateY(0px) rotate(315deg);
  transition-delay: 0.25s;
  background-color: #fff;
}

.toggle.active span:nth-child(3) {
  transform: translateX(-3rem);
}

.navigation-mother-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
}
.navigation-mother-container .nav-elements-cover {
  display: flex;
  align-items: center;
  gap: 10rem;
}
.navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
  width: 8vw;
  height: 3rem;
}
.navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.navigation-mother-container .nav-elements-cover .active-page {
  font-weight: 300;
  font-size: 0.8rem;
}
.navigation-mother-container .contact-us-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.3rem;
  color: #000;
  transform: rotate(90deg);
  width: 20rem;
  position: fixed;
  top: 9.6rem;
  right: -3rem;
  transition: gap 0.5s ease-in-out;
}
.navigation-mother-container .contact-us-btn .circle {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  background: #d99201;
  transition: all 0.5s ease-in-out;
}
.navigation-mother-container .contact-us-btn:hover {
  gap: 0.5rem;
}
.navigation-mother-container .contact-us-btn:hover .circle {
  width: 2vw;
  height: 2vw;
}

.navigation-mother-container.scrolled {
  background: rgba(255, 255, 255, 0.7411764706);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

/* MEDIA SCREEN RESPONSIVENESS */
@media only screen and (min-width: 1400px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 10rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 8vw;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.9rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #000;
    transform: rotate(90deg);
    width: 23rem;
    position: fixed;
    top: 10.9rem;
    right: -2rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 2vw;
    height: 2vw;
  }
}
@media (max-width: 1100px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1rem;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 10rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 12vw;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.8rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #000;
    transform: rotate(90deg);
    width: 23rem;
    position: fixed;
    top: 11rem;
    right: -8rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 3vw;
    height: 3vw;
  }
}
@media (max-width: 920px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1rem;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 10rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 12vw;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.8rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #000;
    transform: rotate(90deg);
    width: 23rem;
    position: fixed;
    top: 11rem;
    right: -8rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 3vw;
    height: 3vw;
  }
}
@media (max-width: 900px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1rem;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 10rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 13vw;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.8rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #000;
    transform: rotate(90deg);
    width: 23rem;
    position: fixed;
    top: 11.3rem;
    right: -8rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 3vw;
    height: 3vw;
  }
}
@media (max-width: 800px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 1rem;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 10rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 5rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 13vw;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.8rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.5rem;
    color: #000;
    transform: rotate(90deg);
    width: 23rem;
    position: fixed;
    top: 11.5rem;
    right: -9rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 5vw;
    height: 5vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 3vw;
    height: 3vw;
  }
}
@media (max-width: 600px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0.1rem;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 6rem;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.8rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #000;
    transform: rotate(90deg);
    width: 17rem;
    position: fixed;
    top: 8.4rem;
    right: -6.5rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 6vw;
    height: 6vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 4vw;
    height: 4vw;
  }
}
@media (max-width: 500px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0.1rem;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 6rem;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.8rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #000;
    transform: rotate(90deg);
    width: 17rem;
    position: fixed;
    top: 8.5rem;
    right: -6.8rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 8vw;
    height: 8vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 4vw;
    height: 4vw;
  }
}
@media (max-width: 350px) {
  .navigation-mother-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem 0.1rem;
    z-index: 100;
  }
  .navigation-mother-container .nav-elements-cover {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo {
    width: 6rem;
    height: 3rem;
  }
  .navigation-mother-container .nav-elements-cover .logo-plus-navBtn .logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .navigation-mother-container .nav-elements-cover .active-page {
    font-weight: 300;
    font-size: 0.8rem;
  }
  .navigation-mother-container .contact-us-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #000;
    transform: rotate(90deg);
    width: 17rem;
    position: fixed;
    top: 8.9rem;
    right: -7rem;
    transition: gap 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn .circle {
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    background: #d99201;
    transition: all 0.5s ease-in-out;
  }
  .navigation-mother-container .contact-us-btn:hover {
    gap: 0.5rem;
  }
  .navigation-mother-container .contact-us-btn:hover .circle {
    width: 3vw;
    height: 3vw;
  }
}
.navigation-links-monther-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 0rem;
  opacity: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.8s ease-in-out;
  z-index: 99;
  cursor: pointer;
}
.navigation-links-monther-container .nav-cover {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.navigation-links-monther-container .nav-cover li a {
  font-size: 3.5rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.navigation-links-monther-container .nav-cover li a::after {
  content: attr(data-menu);
  position: fixed;
  width: -moz-max-content;
  width: max-content;
  color: #d99201;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% - 100px), -50%);
  font-size: 150px;
  font-weight: 900;
  opacity: 0;
  text-transform: uppercase;
  pointer-events: none;
  transition: all 500ms ease;
}
.navigation-links-monther-container .nav-cover li a:hover {
  color: #d99201;
  padding-left: 1rem;
}
.navigation-links-monther-container .nav-cover li a:hover::after {
  opacity: 0.2;
  transform: translate(-55%, -50%);
}
.navigation-links-monther-container .nav-cover li a.filtered {
  color: #d99201;
}

.navigation-links-monther-container.view-nav {
  height: 100vh;
  opacity: 1;
}
.navigation-links-monther-container.view-nav li {
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out;
  animation: reviewLinks 0.5s ease-in-out forwards;
  animation-delay: 1s;
}
.navigation-links-monther-container.view-nav li:nth-child(2) {
  animation-delay: 1.2s;
}
.navigation-links-monther-container.view-nav li:nth-child(3) {
  animation-delay: 1.4s;
}
.navigation-links-monther-container.view-nav li:nth-child(4) {
  animation-delay: 1.6s;
}
.navigation-links-monther-container.view-nav li:last-child {
  animation-delay: 1.8s;
}
@keyframes reviewLinks {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.navigation-links-monther-container.view-nav .navigation-mother-container .nav-elements-cover .active-page {
  color: #fff;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 900px) {
  .navigation-links-monther-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0rem;
    opacity: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    z-index: 99;
    cursor: pointer;
  }
  .navigation-links-monther-container .nav-cover {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .navigation-links-monther-container .nav-cover li a {
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .navigation-links-monther-container .nav-cover li a::after {
    content: attr(data-menu);
    position: fixed;
    width: -moz-max-content;
    width: max-content;
    color: #d99201;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 100px), -50%);
    font-size: 110px;
    font-weight: 900;
    opacity: 0;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 500ms ease;
  }
  .navigation-links-monther-container .nav-cover li a:hover {
    color: #d99201;
    padding-left: 1rem;
  }
  .navigation-links-monther-container .nav-cover li a:hover::after {
    opacity: 0.2;
    transform: translate(-55%, -50%);
  }
}
@media (max-width: 600px) {
  .navigation-links-monther-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0rem;
    opacity: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    z-index: 99;
    cursor: pointer;
  }
  .navigation-links-monther-container .nav-cover {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .navigation-links-monther-container .nav-cover li a {
    font-size: 3rem;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .navigation-links-monther-container .nav-cover li a::after {
    content: attr(data-menu);
    position: fixed;
    width: -moz-max-content;
    width: max-content;
    color: #d99201;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 100px), -50%);
    font-size: 90px;
    font-weight: 900;
    opacity: 0;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 500ms ease;
  }
  .navigation-links-monther-container .nav-cover li a:hover {
    color: #d99201;
    padding-left: 1rem;
  }
  .navigation-links-monther-container .nav-cover li a:hover::after {
    opacity: 0.2;
    transform: translate(-55%, -50%);
  }
}
@media (max-width: 500px) {
  .navigation-links-monther-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 0rem;
    opacity: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.8s ease-in-out;
    z-index: 99;
    cursor: pointer;
  }
  .navigation-links-monther-container .nav-cover {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .navigation-links-monther-container .nav-cover li a {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease-in-out;
  }
  .navigation-links-monther-container .nav-cover li a::after {
    content: attr(data-menu);
    position: fixed;
    width: -moz-max-content;
    width: max-content;
    color: #d99201;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% - 100px), -50%);
    font-size: 70px;
    font-weight: 900;
    opacity: 0;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 500ms ease;
  }
  .navigation-links-monther-container .nav-cover li a:hover {
    color: #d99201;
    padding-left: 1rem;
  }
  .navigation-links-monther-container .nav-cover li a:hover::after {
    opacity: 0.2;
    transform: translate(-55%, -50%);
  }
}
.home-banner-mother-container {
  padding: 30vh 0rem 0vh;
}
.home-banner-mother-container .content-mother-container {
  display: flex;
  align-items: center;
  margin: 0rem 0rem 15vh;
}
.home-banner-mother-container .content-mother-container .content-cover .heading-header {
  font-size: 10vh;
  line-height: 10.5vh;
  font-weight: 700;
  width: 60vw;
  text-align: center;
  color: #1a3f22;
  margin: 0rem 0rem 5vh;
  justify-self: center;
}
.home-banner-mother-container .content-mother-container .content-cover .heading-header span {
  padding: 0rem;
}
.home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive {
  height: 7vh;
  display: inline-block;
}
.home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive img {
  height: 100%;
}
.home-banner-mother-container .content-mother-container .content-cover .heading-text {
  font-size: 1rem;
  line-height: 1.3rem;
  width: 80%;
  text-align: center;
  justify-self: center;
  margin: 0rem 0rem 2.5rem;
}
.home-banner-mother-container .content-mother-container .content-cover .buttons-cover {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.home-banner-mother-container .content-mother-container .content-cover .buttons-cover .button {
  padding: 0.8rem 1.5rem;
}
.home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started {
  background-color: #d99201;
  color: #000;
  border: #d99201 1px solid;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started:hover {
  background-color: transparent;
  color: #d99201;
  border: #1a3f22 1px solid;
}
.home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more {
  background: transparent;
  border: #1a3f22 1px solid;
  border-radius: 0.5rem;
  color: #d99201;
  transition: all 0.3s ease-in-out;
}
.home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more:hover {
  background-color: #d99201;
  color: #000;
  border: #d99201 1px solid;
}

.image-cover {
  margin: 0rem 0rem 10vh;
}
.image-cover .scroller {
  max-width: 100%;
}
.image-cover .scroller .scroller_inner {
  display: flex;
  flex-wrap: wrap;
  padding-block: 1rem;
  gap: 1rem;
}
.image-cover .scroller .scroller_inner img {
  width: 35vw;
  height: 40vh;
  scroll-snap-align: start;
  flex-shrink: 0;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.image-cover .scroller[data-animated=true] {
  overflow: hidden;
}
.image-cover .scroller[data-animated=true] .scroller_inner {
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
.image-cover .scroller[data-direction=right] {
  --_animation-direction: reverse;
}
.image-cover .scroller[data-direction=left] {
  --_animation-direction: forwards;
}
.image-cover .scroller[data-speed=slow] {
  --_animation-duration: 60s;
}
.image-cover .scroller[data-speed=fast] {
  --_animation-duration: 40s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/* MEDIA SCREEN RESPONSIVENESS */
@media only screen and (min-width: 1400px) {
  .home-banner-mother-container {
    padding: 30vh 0rem 0vh;
  }
  .home-banner-mother-container .content-mother-container {
    display: flex;
    align-items: center;
    margin: 0rem 0rem 15vh;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-text {
    font-size: 1.1rem;
    line-height: 1.4rem;
    width: 80%;
    text-align: center;
    justify-self: center;
    margin: 0rem 0rem 2.5rem;
  }
}
@media (max-width: 1100px) {
  .home-banner-mother-container {
    padding: 30vh 1rem 0vh;
  }
  .home-banner-mother-container .content-mother-container {
    display: flex;
    align-items: center;
    margin: 0rem 0rem 6vh;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header {
    font-size: 5rem;
    line-height: 5.4rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #1a3f22;
    margin: 0rem 0rem 3vh;
    justify-self: center;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive {
    height: 3.5rem;
    display: inline-block;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive img {
    height: 100%;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-text {
    font-size: 1rem;
    line-height: 1.3rem;
    width: 90%;
    text-align: center;
    justify-self: center;
    margin: 0rem 0rem 3rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .button {
    padding: 0.8rem 1.5rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started:hover {
    background-color: transparent;
    color: #d99201;
    border: #1a3f22 1px solid;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more {
    background: transparent;
    border: #1a3f22 1px solid;
    color: #d99201;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more:hover {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
  }
  .image-cover {
    margin: 0rem 0rem 5vh;
  }
  .image-cover .scroller {
    max-width: 100%;
  }
  .image-cover .scroller .scroller_inner {
    display: flex;
    flex-wrap: wrap;
    padding-block: 1rem;
    gap: 1rem;
  }
  .image-cover .scroller .scroller_inner img {
    width: 25rem;
    height: 15rem;
    scroll-snap-align: start;
    flex-shrink: 0;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .image-cover .scroller[data-animated=true] {
    overflow: hidden;
  }
  .image-cover .scroller[data-animated=true] .scroller_inner {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  }
  .image-cover .scroller[data-direction=right] {
    --_animation-direction: reverse;
  }
  .image-cover .scroller[data-direction=left] {
    --_animation-direction: forwards;
  }
  .image-cover .scroller[data-speed=slow] {
    --_animation-duration: 60s;
  }
  .image-cover .scroller[data-speed=fast] {
    --_animation-duration: 40s;
  }
}
@media (max-width: 900px) {
  .home-banner-mother-container {
    padding: 30vh 1rem 0vh;
  }
  .home-banner-mother-container .content-mother-container {
    display: flex;
    align-items: center;
    margin: 0rem 0rem 6vh;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header {
    font-size: 5rem;
    line-height: 5.4rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #1a3f22;
    margin: 0rem 0rem 5vh;
    justify-self: center;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive {
    height: 3.5rem;
    display: inline-block;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive img {
    height: 100%;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-text {
    font-size: 1rem;
    line-height: 1.3rem;
    width: 100%;
    text-align: center;
    justify-self: center;
    margin: 0rem 0rem 3rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .button {
    padding: 0.8rem 1.5rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started:hover {
    background-color: transparent;
    color: #d99201;
    border: #1a3f22 1px solid;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more {
    background: transparent;
    border: #1a3f22 1px solid;
    color: #d99201;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more:hover {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
  }
  .image-cover {
    margin: 0rem 0rem 5vh;
  }
  .image-cover .scroller {
    max-width: 100%;
  }
  .image-cover .scroller .scroller_inner {
    display: flex;
    flex-wrap: wrap;
    padding-block: 1rem;
    gap: 1rem;
  }
  .image-cover .scroller .scroller_inner img {
    width: 25rem;
    height: 15rem;
    scroll-snap-align: start;
    flex-shrink: 0;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .image-cover .scroller[data-animated=true] {
    overflow: hidden;
  }
  .image-cover .scroller[data-animated=true] .scroller_inner {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  }
  .image-cover .scroller[data-direction=right] {
    --_animation-direction: reverse;
  }
  .image-cover .scroller[data-direction=left] {
    --_animation-direction: forwards;
  }
  .image-cover .scroller[data-speed=slow] {
    --_animation-duration: 60s;
  }
  .image-cover .scroller[data-speed=fast] {
    --_animation-duration: 40s;
  }
}
@media (max-width: 600px) {
  .home-banner-mother-container {
    padding: 25vh 1rem 0vh;
  }
  .home-banner-mother-container .content-mother-container {
    display: flex;
    align-items: center;
    margin: 0rem 0rem 6vh;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header {
    font-size: 3rem;
    line-height: 3.4rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #1a3f22;
    margin: 0rem 0rem 4vh;
    justify-self: center;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive {
    height: 2rem;
    display: inline-block;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive img {
    height: 100%;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3rem;
    width: 100%;
    text-align: center;
    justify-self: center;
    margin: 0rem 0rem 2.5rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .button {
    padding: 0.8rem 1.5rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started:hover {
    background-color: transparent;
    color: #d99201;
    border: #1a3f22 1px solid;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more {
    background: transparent;
    border: #1a3f22 1px solid;
    color: #d99201;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more:hover {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
  }
  .image-cover {
    margin: 0rem 0rem 5vh;
  }
  .image-cover .scroller {
    max-width: 100%;
  }
  .image-cover .scroller .scroller_inner {
    display: flex;
    flex-wrap: wrap;
    padding-block: 1rem;
    gap: 1rem;
  }
  .image-cover .scroller .scroller_inner img {
    width: 20rem;
    height: 12rem;
    scroll-snap-align: start;
    flex-shrink: 0;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .image-cover .scroller[data-animated=true] {
    overflow: hidden;
  }
  .image-cover .scroller[data-animated=true] .scroller_inner {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  }
  .image-cover .scroller[data-direction=right] {
    --_animation-direction: reverse;
  }
  .image-cover .scroller[data-direction=left] {
    --_animation-direction: forwards;
  }
  .image-cover .scroller[data-speed=slow] {
    --_animation-duration: 60s;
  }
  .image-cover .scroller[data-speed=fast] {
    --_animation-duration: 40s;
  }
}
@media (max-width: 500px) {
  .home-banner-mother-container {
    padding: 25vh 1rem 0vh;
  }
  .home-banner-mother-container .content-mother-container {
    display: flex;
    align-items: center;
    margin: 0rem 0rem 6vh;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header {
    font-size: 2.5rem;
    line-height: 2.9rem;
    font-weight: 700;
    width: 100%;
    text-align: center;
    color: #1a3f22;
    margin: 0rem 0rem 4vh;
    justify-self: center;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive {
    height: 1.7rem;
    display: inline-block;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-header .with-clive img {
    height: 100%;
  }
  .home-banner-mother-container .content-mother-container .content-cover .heading-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3rem;
    width: 100%;
    text-align: center;
    justify-self: center;
    margin: 0rem 0rem 2.5rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .button {
    padding: 0.8rem 1.5rem;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .get-started:hover {
    background-color: transparent;
    color: #d99201;
    border: #1a3f22 1px solid;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more {
    background: transparent;
    border: #1a3f22 1px solid;
    color: #d99201;
    transition: all 0.3s ease-in-out;
  }
  .home-banner-mother-container .content-mother-container .content-cover .buttons-cover .learn-more:hover {
    background-color: #d99201;
    color: #000;
    border: #d99201 1px solid;
  }
  .image-cover {
    margin: 0rem 0rem 5vh;
  }
  .image-cover .scroller {
    max-width: 100%;
  }
  .image-cover .scroller .scroller_inner {
    display: flex;
    flex-wrap: wrap;
    padding-block: 1rem;
    gap: 1rem;
  }
  .image-cover .scroller .scroller_inner img {
    width: 20rem;
    height: 12rem;
    scroll-snap-align: start;
    flex-shrink: 0;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .image-cover .scroller[data-animated=true] {
    overflow: hidden;
  }
  .image-cover .scroller[data-animated=true] .scroller_inner {
    width: -moz-max-content;
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
  }
  .image-cover .scroller[data-direction=right] {
    --_animation-direction: reverse;
  }
  .image-cover .scroller[data-direction=left] {
    --_animation-direction: forwards;
  }
  .image-cover .scroller[data-speed=slow] {
    --_animation-duration: 60s;
  }
  .image-cover .scroller[data-speed=fast] {
    --_animation-duration: 40s;
  }
}
.services-mother-container {
  background: #efefef;
  padding: 15vh 0rem 0vh;
  color: #d99201;
}
.services-mother-container .services-cover {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.services-mother-container .services-cover .heading-plus-text {
  display: flex;
  align-items: end;
  gap: 5rem;
}
.services-mother-container .services-cover .heading-plus-text .main-headding {
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.services-mother-container .services-cover .heading-plus-text .text-section {
  font-size: 0.8rem;
}
.services-mother-container .services-cover .explanation {
  width: 40vw;
}
.services-mother-container .services-cover .explanation p {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 500;
  height: -moz-max-content;
  height: max-content;
}
.services-mother-container .services-cover .explanation p .highlight {
  font-style: italic;
  font-weight: normal;
  font-family: "Times New Roman", Times;
}
.services-mother-container .services-cover .explanation p .highlight span {
  font-family: "Times New Roman", Times;
  height: inherit;
  padding: 0rem;
}
.services-mother-container .services-cover .desktop-tablet-view p {
  line-height: 1.8rem;
}
.services-mother-container .services-cover .desktop-tablet-view p .start {
  margin-left: 5rem;
}
.services-mother-container .services-cover .mobile-view {
  display: none;
}
.services-mother-container .company-owner-name {
  margin-top: 10vh;
}
.services-mother-container .company-owner-name h1 {
  font-size: 350px;
  line-height: 312px;
  -webkit-text-fill-color: #d99201;
  -webkit-text-stroke-width: 2px;
  display: flex;
  justify-content: space-between;
}
.services-mother-container .company-owner-name h1 span {
  font-family: "Times New Roman", Times, serif;
  padding: 0rem;
  height: inherit;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    gap: 5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 40vw;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .services-mother-container .company-owner-name {
    margin-top: 3rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 300px;
    line-height: 276px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
  }
}
@media (max-width: 920px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    gap: 5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 40vw;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.6rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .services-mother-container .company-owner-name {
    margin-top: 3rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 250px;
    line-height: 237px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
  }
}
@media (max-width: 900px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    gap: 5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
    display: none;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .services-cover .explanation p .highlight {
    font-style: italic;
    font-weight: normal;
    font-family: "Times New Roman", Times;
  }
  .services-mother-container .services-cover .desktop-tablet-view {
    display: none;
  }
  .services-mother-container .services-cover .mobile-view {
    display: block;
  }
  .services-mother-container .services-cover .mobile-view p span {
    font-style: inherit;
    font-weight: 500;
    font-family: inherit;
  }
  .services-mother-container .services-cover .mobile-view p .highlight {
    font-style: italic;
    font-weight: normal;
    font-family: "Times New Roman", Times;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 240px;
    line-height: 229px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
    margin-top: 3rem;
  }
}
@media (max-width: 800px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    gap: 5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.6rem;
    line-height: 1.8rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 225px;
    line-height: 219px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
    margin-top: 3rem;
  }
}
@media (max-width: 600px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name {
    margin-top: 2rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 155px;
    line-height: 164px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
  }
}
@media (max-width: 450px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name {
    margin-top: 3rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 120px;
    line-height: 138px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
  }
}
@media (max-width: 415px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name {
    margin-top: 3rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 115px;
    line-height: 134px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
  }
}
@media (max-width: 400px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name {
    margin-top: 3rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 100px;
    line-height: 122px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
  }
}
@media (max-width: 380px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 95px;
    line-height: 118px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
    margin-top: 3rem;
  }
}
@media (max-width: 370px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 95px;
    line-height: 119px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
    margin-top: 3rem;
  }
}
@media (max-width: 350px) {
  .services-mother-container {
    background: #efefef;
    padding: 6vh 1rem 0vh;
    color: #d99201;
    overflow: hidden;
  }
  .services-mother-container .services-cover {
    display: flex;
    flex-direction: column;
    justify-content: none;
    align-items: start;
    gap: 3rem;
  }
  .services-mother-container .services-cover .heading-plus-text {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
  }
  .services-mother-container .services-cover .heading-plus-text .main-headding {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .services-mother-container .services-cover .heading-plus-text .text-section {
    font-size: 0.8rem;
  }
  .services-mother-container .services-cover .explanation {
    width: 100%;
  }
  .services-mother-container .services-cover .explanation p {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 500;
    text-indent: 0rem;
  }
  .services-mother-container .company-owner-name {
    margin-top: 3rem;
  }
  .services-mother-container .company-owner-name h1 {
    font-size: 90px;
    line-height: 116px;
    -webkit-text-fill-color: #d99201;
    -webkit-text-stroke-width: 2px;
    overflow: hidden;
  }
}
.strategy-mother-cover {
  position: relative;
  padding: 13vh 0rem 0rem;
  background: #d99201;
  margin-top: -3rem;
}
.strategy-mother-cover .heading-text {
  font-size: 4rem;
  line-height: 4rem;
  width: 90%;
  color: #fff;
  margin: 0rem 0rem 0rem;
}
.strategy-mother-cover .heading-text .super-power {
  color: #1a3f22;
}
.strategy-mother-cover .heading-text span {
  padding: 0px 0px 5px;
}
.strategy-mother-cover .sticky {
  overflow: visible;
  width: 1200px;
  margin: 0rem auto;
}
.strategy-mother-cover .sticky #horizontal {
  display: flex;
  align-items: flex-end;
  gap: 5rem;
  height: 100vh;
  position: relative;
  /*padding: 0rem 0rem 0rem 7vw;*/
}
.strategy-mother-cover .sticky #horizontal .content {
  color: #fff;
  width: 60%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.strategy-mother-cover .sticky #horizontal .content .texts-cover {
  position: absolute;
  top: 6rem;
  left: 0rem;
}
.strategy-mother-cover .sticky #horizontal .content .texts-cover h1 {
  font-size: 3rem;
  margin: 0rem 0rem 1.5rem;
}
.strategy-mother-cover .sticky #horizontal .content .texts-cover p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3rem;
  width: 25rem;
  margin: 0rem 0rem 4rem;
}
.strategy-mother-cover .sticky #horizontal .content .plan-image {
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  height: calc(100% - 21rem);
  width: 100%;
  position: absolute;
  bottom: 0rem;
  left: 0rem;
}
.strategy-mother-cover .sticky #horizontal .content #strategy {
  background-image: url("../../images/strategy/black-people-designers.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.strategy-mother-cover .sticky #horizontal .content #design {
  background-image: url("../../images/strategy/design-stage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.strategy-mother-cover .sticky #horizontal .content #build {
  background-image: url("../../images/strategy/build-website.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.strategy-mother-cover .sticky #horizontal .content #maintain {
  background-image: url("../../images/strategy/maintaining.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.strategy-mother-cover .mobile-viewport-mother-container {
  display: none;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media only screen and (min-width: 1400px) {
  .strategy-mother-cover {
    position: relative;
    padding: 13vh 0rem 0rem;
    background: #d99201;
    height: -moz-max-content;
    height: max-content;
    margin-top: -3rem;
  }
  .strategy-mother-cover .heading-text {
    font-size: 5rem;
    line-height: 5rem;
    width: 100%;
    color: #fff;
    margin: 0rem 0rem 0rem;
    z-index: 10;
    position: relative;
  }
  .strategy-mother-cover .heading-text .super-power {
    color: #1a3f22;
  }
  .strategy-mother-cover .heading-text span {
    padding: 0px 0px 8px;
  }
  .strategy-mother-cover .sticky {
    overflow: visible;
    position: relative;
    z-index: 5;
    width: 1200px;
    margin: 0rem auto;
  }
  .strategy-mother-cover .sticky #horizontal {
    display: flex;
    align-items: flex-end;
    gap: 5rem;
    height: 100vh;
    position: relative;
  }
  .strategy-mother-cover .sticky #horizontal .content {
    color: #fff;
    width: 70%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover {
    position: absolute;
    top: 7rem;
    left: 0rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover h1 {
    font-size: 3rem;
    margin: 0rem 0rem 1.5rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.3rem;
    width: 25rem;
    margin: 0rem 0rem 4rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .plan-image {
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    height: calc(100% - 23rem);
    width: 100%;
    position: absolute;
    bottom: 0rem;
    left: 0rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container {
    display: none;
  }
}
@media (max-width: 1100px) {
  .strategy-mother-cover {
    position: relative;
    padding: 6vh 0rem 0rem;
    background: #d99201;
    margin-top: -3rem;
  }
  .strategy-mother-cover .heading-text {
    font-size: 4rem;
    line-height: 3.5rem;
    width: 100%;
    color: #fff;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .strategy-mother-cover .heading-text span {
    padding: 0px 0px 7px;
  }
  .strategy-mother-cover .sticky {
    overflow: hidden;
    display: none;
  }
  .strategy-mother-cover .sticky #horizontal {
    display: flex;
    align-items: flex-end;
    gap: 5rem;
    height: 60vh;
    padding: 0rem 0rem 0rem 1rem;
  }
  .strategy-mother-cover .sticky #horizontal .content {
    color: #fff;
    width: 45rem;
    flex-shrink: 0;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover h1 {
    font-size: 3rem;
    margin: 0rem 0rem 1.5rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    width: 25rem;
    margin: 0rem 0rem 4rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .plan-image {
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    height: 22rem;
    width: 100%;
  }
  .strategy-mother-cover .mobile-viewport-mother-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #fff;
    padding: 6vh 1rem 5vh;
    border-top: #1a3f22 solid 2px;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content {
    position: relative;
    color: #fff;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .texts-cover h1 {
    font-size: 2rem;
    margin: 0rem 0rem 0.5rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .texts-cover p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3rem;
    width: 90%;
    margin: 0rem 0rem 2rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .plan-image {
    border-radius: 0.5rem 0.5rem 0.1rem 0.1rem;
    height: 16rem;
    width: 100%;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content #strategy {
    background-image: url("../../images/strategy/black-people-designers.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content #design {
    background-image: url("../../images/strategy/design-stage.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content #build {
    background-image: url("../../images/strategy/build-website.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content #maintain {
    background-image: url("../../images/strategy/maintaining.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .number {
    position: absolute;
    top: -1rem;
    right: 0rem;
    font-size: 3rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    color: #1a3f22;
    font-weight: 900;
  }
}
@media (max-width: 900px) {
  .strategy-mother-cover {
    position: relative;
    padding: 6vh 0rem 0rem;
    background: #d99201;
    margin-top: -3rem;
  }
  .strategy-mother-cover .heading-text {
    font-size: 3rem;
    line-height: 2.5rem;
    width: 100%;
    color: #fff;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .strategy-mother-cover .heading-text .super-power {
    color: #1a3f22;
  }
  .strategy-mother-cover .heading-text span {
    padding: 0px 0px 7px;
  }
  .strategy-mother-cover .sticky {
    overflow: hidden;
    display: none;
  }
  .strategy-mother-cover .sticky #horizontal {
    display: flex;
    align-items: flex-end;
    gap: 5rem;
    height: 60vh;
    padding: 0rem 0rem 0rem 1rem;
  }
  .strategy-mother-cover .sticky #horizontal .content {
    color: #fff;
    width: 45rem;
    flex-shrink: 0;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover h1 {
    font-size: 3rem;
    margin: 0rem 0rem 1.5rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    width: 25rem;
    margin: 0rem 0rem 4rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .plan-image {
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    height: 22rem;
    width: 100%;
  }
  .strategy-mother-cover .mobile-viewport-mother-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: #fff;
    padding: 6vh 1rem 5vh;
    border-top: #1a3f22 solid 2px;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content {
    position: relative;
    color: #fff;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .texts-cover h1 {
    font-size: 2rem;
    margin: 0rem 0rem 0.5rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .texts-cover p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3rem;
    width: 90%;
    margin: 0rem 0rem 2rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .plan-image {
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem 0.5rem 0.1rem 0.1rem;
    height: 16rem;
    width: 100%;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .number {
    position: absolute;
    top: -1rem;
    right: 0rem;
    font-size: 3rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    color: #1a3f22;
    font-weight: 900;
  }
}
@media (max-width: 600px) {
  .strategy-mother-cover {
    position: relative;
    padding: 6vh 0rem 0rem;
    background: #d99201;
    margin-top: -3rem;
  }
  .strategy-mother-cover .heading-text {
    font-size: 2.5rem;
    line-height: 2rem;
    width: 100%;
    color: #fff;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .strategy-mother-cover .heading-text .super-power {
    color: #1a3f22;
  }
  .strategy-mother-cover .heading-text span {
    padding: 0px 0px 5px;
  }
  .strategy-mother-cover .sticky {
    overflow: hidden;
    display: none;
  }
  .strategy-mother-cover .sticky #horizontal {
    display: flex;
    align-items: flex-end;
    gap: 5rem;
    height: 60vh;
    padding: 0rem 0rem 0rem 1rem;
  }
  .strategy-mother-cover .sticky #horizontal .content {
    color: #fff;
    width: 45rem;
    flex-shrink: 0;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover h1 {
    font-size: 3rem;
    margin: 0rem 0rem 1.5rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .texts-cover p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    width: 25rem;
    margin: 0rem 0rem 4rem;
  }
  .strategy-mother-cover .sticky #horizontal .content .plan-image {
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem 0.5rem 0rem 0rem;
    height: 22rem;
    width: 100%;
  }
  .strategy-mother-cover .mobile-viewport-mother-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: #fff;
    padding: 6vh 1rem 5vh;
    border-top: #1a3f22 solid 2px;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content {
    position: relative;
    color: #fff;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .texts-cover h1 {
    font-size: 1.8rem;
    margin: 0rem 0rem 0.5rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .texts-cover p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    width: 100%;
    margin: 0rem 0rem 2rem;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .plan-image {
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem 0.5rem 0.1rem 0.1rem;
    height: 16rem;
    width: 100%;
  }
  .strategy-mother-cover .mobile-viewport-mother-container .mother-cover .content .number {
    position: absolute;
    top: -0.7rem;
    right: 0rem;
    font-size: 2.5rem;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    color: #1a3f22;
    font-weight: 900;
  }
}
.our-services-mother-container {
  padding: 15vh 0rem 10vh;
}
.our-services-mother-container .heading-text-plus-view-more-btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid #000;
  padding-bottom: 2rem;
}
.our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading {
  display: flex;
  font-size: 4rem;
  line-height: 4rem;
  align-self: flex-end;
}
.our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading .img-srvc {
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("../../images/harareCityShot.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
  position: relative;
  bottom: -3px;
}
.our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn {
  background: #d99201;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  transition: all 0.3s ease-in-out;
}
.our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn:hover {
  border-radius: 0.7rem;
}
.our-services-mother-container .services-list {
  margin: 2rem 0rem 0rem;
  padding-left: 2rem;
}
.our-services-mother-container .services-list .service-container {
  font-size: 2.7rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
}
.our-services-mother-container .services-list .service-container a {
  padding: 1rem 1rem 1rem 0rem;
  border-radius: 0.1rem;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s ease-in-out;
}
.our-services-mother-container .services-list .service-container a .icon {
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid #d99201;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-services-mother-container .services-list .service-container a i {
  transform: rotate(-45deg);
  transition: transform 0.6s ease-in-out;
}
.our-services-mother-container .services-list .service-container a:hover i {
  transform: rotate(0deg) translatex(0rem);
  display: inline-block;
}
.our-services-mother-container .services-list .service-container a:first-child {
  border-bottom: 1px solid #000;
  transition: padding 0.3s ease-in;
}
.our-services-mother-container .services-list .service-container a:first-child:hover {
  border: #000 1px solid;
  padding: 1rem 0rem 1rem 2rem;
  border-radius: 0.1rem;
  color: #fff;
  background-image: url("../../images/our-services/rebuild.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.our-services-mother-container .services-list .service-container a:last-child {
  border-bottom: 1px solid #000;
  transition: padding 0.3s ease-in;
}
.our-services-mother-container .services-list .service-container a:last-child:hover {
  border: #000 1px solid;
  border-top: none;
  padding: 1rem 0rem 1rem 2rem;
  border-radius: 0.1rem;
  color: #fff;
  background-image: url("../../images/our-services/How-to-Create-a-Website-Design.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-services-mother-container .services-list .service-container:nth-child(2) a:first-child {
  border-bottom: 1px solid #000;
  transition: padding 0.3s ease-in;
}
.our-services-mother-container .services-list .service-container:nth-child(2) a:first-child:hover {
  border: #000 1px solid;
  border-top: none;
  padding: 1rem 0rem 1rem 2rem;
  border-radius: 0.1rem;
  color: #fff;
  background-image: url("../../images/our-services/social-media-and-web-design.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-services-mother-container .services-list .service-container:nth-child(2) a:nth-child(2) {
  border-bottom: 1px solid #000;
  transition: padding 0.3s ease-in;
}
.our-services-mother-container .services-list .service-container:nth-child(2) a:nth-child(2):hover {
  border: #000 1px solid;
  border-top: none;
  padding: 1rem 0rem 1rem 2rem;
  border-radius: 0.1rem;
  color: #fff;
  background-image: url("../../images/our-services/content-creation.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-services-mother-container .services-list .service-container:nth-child(2) a:last-child {
  border-bottom: 1px solid #000;
  transition: padding 0.3s ease-in;
}
.our-services-mother-container .services-list .service-container:nth-child(2) a:last-child:hover {
  border: #000 1px solid;
  border-top: none;
  padding: 1rem 0rem 1rem 2rem;
  border-radius: 0.1rem;
  color: #fff;
  background-image: url("../../images/our-services/social-media-management.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-mother-container {
  padding: 10vh 0rem 10vh;
  background: #1a3f22;
  color: #fff;
}
.portfolio-mother-container .heading-with-button {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.portfolio-mother-container .heading-with-button h1 {
  font-size: 4rem;
  line-height: 4.2rem;
  width: 32rem;
}
.portfolio-mother-container .heading-with-button .see-all-work-btn {
  background: #d99201;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 2rem;
  transition: all 0.3s ease-in-out;
  margin-bottom: 0.7rem;
}
.portfolio-mother-container .heading-with-button .see-all-work-btn:hover {
  border-radius: 0.7rem;
}
.portfolio-mother-container .projects-grid-cover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.portfolio-mother-container .projects-grid-cover .project-cover {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link {
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5803921569);
  height: 20rem;
  background-image: url("../../images/dudeCoding.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link:hover img {
  width: 110%;
  height: 110%;
  transform: translateX(-5%);
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper {
  margin: 1.3rem 1rem 0rem 1rem;
  padding: 0rem 0rem 1.5rem 0rem;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.1450980392);
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons button {
  padding: 0.3rem 0.8rem;
  font-size: 1rem;
  border-radius: 0.3rem;
  border: none;
  background: rgba(0, 0, 0, 0.2470588235);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #fff;
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name:hover {
  text-decoration: none;
}
.portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .discription {
  font-size: 1rem;
  line-height: 1.3rem;
  margin-top: 0.8rem;
}
.portfolio-mother-container .projects-grid-cover .project-cover:nth-child(2) {
  margin-top: 3rem;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .our-services-mother-container {
    padding: 6vh 1rem 5vh;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading {
    display: flex;
    font-size: 4rem;
    line-height: 4rem;
    align-self: flex-end;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading .img-srvc {
    width: 3.5rem;
    height: 3.5rem;
    background-image: url("../../images/harareCityShot.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    position: relative;
    bottom: -3px;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn:hover {
    border-radius: 0.7rem;
  }
  .our-services-mother-container .services-list {
    margin: 2rem 0rem 0rem;
    padding-left: 2rem;
  }
  .our-services-mother-container .services-list .service-container {
    font-size: 2.7rem;
    line-height: 2.8rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
  }
  .our-services-mother-container .services-list .service-container a {
    padding: 1rem 1rem 1rem 0rem;
    border-radius: 0.1rem;
    color: #000;
    transition: padding 0.3s ease-in-out;
  }
  .our-services-mother-container .services-list .service-container a:first-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:first-child:hover {
    border: #000 1px solid;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/rebuild.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container a:last-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:last-child:hover {
    border: #000 1px solid;
    border-top: none;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/How-to-Create-a-Website-Design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container:nth-child(2) {
    padding-left: 0rem;
  }
  .portfolio-mother-container {
    padding: 6vh 1rem 5vh;
    background: #1a3f22;
    color: #fff;
  }
  .portfolio-mother-container .heading-with-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .portfolio-mother-container .heading-with-button h1 {
    font-size: 4rem;
    line-height: 4.2rem;
    width: 32rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0.7rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn:hover {
    border-radius: 0.7rem;
  }
  .portfolio-mother-container .projects-grid-cover {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link {
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5803921569);
    height: 16rem;
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper {
    margin: 1.3rem 1rem 0rem 1rem;
    padding: 0rem 0rem 1.5rem 0rem;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.1450980392);
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons button {
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    border: none;
    background: rgba(0, 0, 0, 0.2470588235);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    color: #fff;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .discription {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-top: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover:nth-child(2) {
    margin-top: 3rem;
  }
}
@media (max-width: 900px) {
  .our-services-mother-container {
    padding: 6vh 1rem 5vh;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading {
    display: flex;
    font-size: 3rem;
    line-height: 3rem;
    align-self: flex-end;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading .img-srvc {
    width: 2.5rem;
    height: 2.5rem;
    background-image: url("../../images/harareCityShot.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
    position: relative;
    bottom: -4px;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn {
    background: #d99201;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn:hover {
    border-radius: 0.7rem;
  }
  .our-services-mother-container .services-list {
    margin: 2rem 0rem 0rem;
    display: grid;
    grid-template-columns: 1fr;
    padding-left: 2rem;
  }
  .our-services-mother-container .services-list .service-container {
    font-size: 2.7rem;
    line-height: 2.8rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
  }
  .our-services-mother-container .services-list .service-container a {
    padding: 1rem 1rem 1rem 0rem;
    border-radius: 0.1rem;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: padding 0.3s ease-in-out;
  }
  .our-services-mother-container .services-list .service-container a:first-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:first-child:hover {
    border: #000 1px solid;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/rebuild.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container a:last-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:last-child:hover {
    border: #000 1px solid;
    border-top: none;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/How-to-Create-a-Website-Design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container:nth-child(2) {
    padding-left: 0rem;
  }
  .portfolio-mother-container {
    padding: 6vh 1rem 5vh;
    background: #1a3f22;
    color: #fff;
  }
  .portfolio-mother-container .heading-with-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .portfolio-mother-container .heading-with-button h1 {
    font-size: 3rem;
    line-height: 3.2rem;
    width: 24rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn {
    background: #d99201;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0.7rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn:hover {
    border-radius: 0.7rem;
  }
  .portfolio-mother-container .projects-grid-cover {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link {
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5803921569);
    height: 12.5rem;
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper {
    margin: 1.3rem 1rem 0rem 1rem;
    padding: 0rem 0rem 1.5rem 0rem;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.1450980392);
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons button {
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    border: none;
    background: rgba(0, 0, 0, 0.2470588235);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    color: #fff;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .discription {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-top: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover:nth-child(2) {
    margin-top: 2rem;
  }
}
@media (max-width: 600px) {
  .our-services-mother-container {
    padding: 6vh 1rem 5vh;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading {
    display: flex;
    font-size: 2.5rem;
    line-height: 2.5rem;
    align-self: flex-end;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading .img-srvc {
    width: 2rem;
    height: 2rem;
    background-image: url("../../images/harareCityShot.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.2rem;
    position: relative;
    bottom: -6px;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn {
    background: #d99201;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn:hover {
    border-radius: 0.7rem;
  }
  .our-services-mother-container .services-list {
    margin: 1.5rem 0rem 0rem;
    padding-left: 1rem;
  }
  .our-services-mother-container .services-list .service-container {
    font-size: 1.7rem;
    line-height: 1.8rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
  }
  .our-services-mother-container .services-list .service-container a {
    padding: 1rem 1rem 1rem 0rem;
    border-radius: 0.1rem;
    color: #000;
    transition: padding 0.3s ease-in-out;
  }
  .our-services-mother-container .services-list .service-container a .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid #d99201;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .our-services-mother-container .services-list .service-container a:first-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:first-child:hover {
    border: #000 1px solid;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/rebuild.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container a:last-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:last-child:hover {
    border: #000 1px solid;
    border-top: none;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/How-to-Create-a-Website-Design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container:nth-child(2) {
    padding-left: 0rem;
  }
  .portfolio-mother-container {
    padding: 5vh 1rem 5vh;
    background: #1a3f22;
    color: #fff;
  }
  .portfolio-mother-container .heading-with-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .portfolio-mother-container .heading-with-button h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    width: 18rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn {
    background: #d99201;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0.7rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn:hover {
    border-radius: 0.7rem;
  }
  .portfolio-mother-container .projects-grid-cover {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link {
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5803921569);
    height: 18rem;
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper {
    margin: 1.3rem 1rem 0rem 1rem;
    padding: 0rem 0rem 1.5rem 0rem;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.1450980392);
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons button {
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    border: none;
    background: rgba(0, 0, 0, 0.2470588235);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    color: #fff;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .discription {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-top: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover:nth-child(2) {
    margin-top: 0rem;
  }
}
@media (max-width: 500px) {
  .our-services-mother-container {
    padding: 6vh 1rem 15vh;
    position: relative;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn {
    display: flex;
    justify-content: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
    gap: 1rem;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading {
    display: flex;
    font-size: 2.5rem;
    line-height: 2.5rem;
    align-self: flex-start;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading .img-srvc {
    width: 2rem;
    height: 2rem;
    background-image: url("../../images/harareCityShot.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.2rem;
    position: relative;
    bottom: -6px;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    text-align: center;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn:hover {
    border-radius: 0.7rem;
  }
  .our-services-mother-container .services-list {
    margin: 1.5rem 0rem 0rem;
    padding-left: 0rem;
  }
  .our-services-mother-container .services-list .service-container {
    font-size: 1.7rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
  }
  .our-services-mother-container .services-list .service-container a {
    padding: 1rem 1rem 1rem 0rem;
    border-radius: 0.1rem;
    color: #000;
    transition: padding 0.3s ease-in-out;
  }
  .our-services-mother-container .services-list .service-container a .icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #d99201;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .our-services-mother-container .services-list .service-container a:first-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:first-child:hover {
    border: #000 1px solid;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/rebuild.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container a:last-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:last-child:hover {
    border: #000 1px solid;
    border-top: none;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/How-to-Create-a-Website-Design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container:nth-child(2) {
    padding-left: 0rem;
  }
  .portfolio-mother-container {
    padding: 5vh 1rem 15vh;
    background: #1a3f22;
    color: #fff;
    position: relative;
  }
  .portfolio-mother-container .heading-with-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .portfolio-mother-container .heading-with-button h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    width: 18rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    margin-bottom: 0rem;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    text-align: center;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn:hover {
    border-radius: 0.7rem;
  }
  .portfolio-mother-container .projects-grid-cover {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link {
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5803921569);
    height: 14rem;
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper {
    margin: 1.3rem 1rem 0rem 1rem;
    padding: 0rem 0rem 1.5rem 0rem;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.1450980392);
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons button {
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    border: none;
    background: rgba(0, 0, 0, 0.2470588235);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    color: #fff;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .discription {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-top: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover:nth-child(2) {
    margin-top: 0rem;
  }
}
@media (max-width: 380px) {
  .our-services-mother-container {
    padding: 6vh 1rem 17vh;
    position: relative;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn {
    display: flex;
    justify-content: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
    gap: 1rem;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading {
    display: flex;
    font-size: 2rem;
    line-height: 2rem;
    align-self: flex-start;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading .img-srvc {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../../images/harareCityShot.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.2rem;
    position: relative;
    bottom: -6px;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    text-align: center;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn:hover {
    border-radius: 0.7rem;
  }
  .our-services-mother-container .services-list {
    margin: 1.5rem 0rem 0rem;
    padding-left: 0rem;
  }
  .our-services-mother-container .services-list .service-container {
    font-size: 1.7rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
  }
  .our-services-mother-container .services-list .service-container a {
    padding: 1rem 1rem 1rem 0rem;
    border-radius: 0.1rem;
    color: #000;
    transition: padding 0.3s ease-in-out;
  }
  .our-services-mother-container .services-list .service-container a:first-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:first-child:hover {
    border: #000 1px solid;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/rebuild.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container a:last-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:last-child:hover {
    border: #000 1px solid;
    border-top: none;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/How-to-Create-a-Website-Design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container:nth-child(2) {
    padding-left: 0rem;
  }
  .portfolio-mother-container {
    padding: 5vh 1rem 17vh;
    background: #1a3f22;
    color: #fff;
    position: relative;
  }
  .portfolio-mother-container .heading-with-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .portfolio-mother-container .heading-with-button h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    width: 18rem;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    text-align: center;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn:hover {
    border-radius: 0.7rem;
  }
  .portfolio-mother-container .projects-grid-cover {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link {
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5803921569);
    height: 12.5rem;
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper {
    margin: 1.3rem 1rem 0rem 1rem;
    padding: 0rem 0rem 1.5rem 0rem;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.1450980392);
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons button {
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    border: none;
    background: rgba(0, 0, 0, 0.2470588235);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    color: #fff;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .discription {
    font-size: 1rem;
    line-height: 1.3rem;
    margin-top: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover:nth-child(2) {
    margin-top: 0rem;
  }
}
@media (max-width: 350px) {
  .our-services-mother-container {
    padding: 6vh 1rem 14vh;
    position: relative;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn {
    display: flex;
    justify-content: none;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 2px solid #000;
    padding-bottom: 2rem;
    gap: 1rem;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading {
    display: flex;
    font-size: 2.5rem;
    line-height: 2.5rem;
    align-self: flex-start;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .our-srvc-heading .img-srvc {
    width: 2rem;
    height: 2rem;
    background-image: url("../../images/harareCityShot.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 0.2rem;
    position: relative;
    bottom: -6px;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    text-align: center;
  }
  .our-services-mother-container .heading-text-plus-view-more-btn .view-more-btn:hover {
    border-radius: 0.7rem;
  }
  .our-services-mother-container .services-list {
    margin: 1.5rem 0rem 0rem;
    padding-left: 0rem;
  }
  .our-services-mother-container .services-list .service-container {
    font-size: 1.7rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
  }
  .our-services-mother-container .services-list .service-container a {
    padding: 1rem 1rem 1rem 0rem;
    border-radius: 0.1rem;
    color: #000;
    transition: padding 0.3s ease-in-out;
  }
  .our-services-mother-container .services-list .service-container a:first-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:first-child:hover {
    border: #000 1px solid;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/rebuild.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container a:last-child {
    border-bottom: 1px solid #000;
  }
  .our-services-mother-container .services-list .service-container a:last-child:hover {
    border: #000 1px solid;
    border-top: none;
    padding: 1rem 0rem 1rem 2rem;
    border-radius: 0.1rem;
    color: #fff;
    background-image: url("../../images/our-services/How-to-Create-a-Website-Design.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .our-services-mother-container .services-list .service-container:nth-child(2) {
    padding-left: 0rem;
  }
  .portfolio-mother-container {
    padding: 5vh 1rem 14vh;
    background: #1a3f22;
    color: #fff;
    position: relative;
  }
  .portfolio-mother-container .heading-with-button {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
  }
  .portfolio-mother-container .heading-with-button h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    width: -moz-max-content;
    width: max-content;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn {
    background: #d99201;
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 2rem;
    transition: all 0.3s ease-in-out;
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: calc(100% - 4rem);
    text-align: center;
  }
  .portfolio-mother-container .heading-with-button .see-all-work-btn:hover {
    border-radius: 0.7rem;
  }
  .portfolio-mother-container .projects-grid-cover {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .project-image-link {
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5803921569);
    height: 12.5rem;
    background-image: url("../../images/dudeCoding.jpg");
    background-size: cover;
    background-position: center;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper {
    margin: 1.3rem 1rem 0rem 1rem;
    padding: 0rem 0rem 1.5rem 0rem;
    border-bottom: 0.1px solid rgba(255, 255, 255, 0.1450980392);
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .buttons button {
    padding: 0.3rem 0.8rem;
    font-size: 1rem;
    border-radius: 0.3rem;
    border: none;
    background: rgba(0, 0, 0, 0.2470588235);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    color: #fff;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .project-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover .single-project-container .context-wrapper .discription {
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .portfolio-mother-container .projects-grid-cover .project-cover:nth-child(2) {
    margin-top: 0rem;
  }
}
.footer-container {
  padding: 15vh 0rem 5vh;
}
.footer-container .footer-content .footer-content-plus-links-cover {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn {
  width: 22rem;
}
.footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn img {
  width: 15rem;
}
.footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn .motive {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7rem;
  margin: 1.5rem 0rem 4rem;
}
.footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button {
  background: transparent;
  border: 1px solid #d99201;
  border-radius: 0.5rem;
  color: #d99201;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}
.footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button:hover {
  background: #d99201;
  color: #fff;
}
.footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover {
  display: flex;
  gap: 5rem;
}
.footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper h3 {
  font-size: 0.8rem;
}
.footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul {
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a {
  color: #000;
  transition: color 0.3s ease-in-out;
}
.footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a:hover {
  color: #d99201;
}
.footer-container .footer-content .copyright {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1a3f22;
  margin: 5rem 0rem 0rem;
  text-transform: uppercase;
}
.footer-container .footer-content .copyright span {
  margin: 0rem 0rem 0rem 1rem;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .footer-container {
    padding: 6vh 1rem 3vh;
  }
  .footer-container .footer-content .footer-content-plus-links-cover {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn {
    width: 22rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn img {
    width: 15rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn .motive {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7rem;
    margin: 2rem 0rem 5rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button {
    background: transparent;
    border: 1px solid #d99201;
    border-radius: 0.5rem;
    color: #d99201;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button:hover {
    background: #d99201;
    color: #fff;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover {
    display: flex;
    gap: 2rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper h3 {
    font-size: 0.8rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a {
    color: #000;
    transition: color 0.3s ease-in-out;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a:hover {
    color: #d99201;
  }
  .footer-container .footer-content .copyright {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a3f22;
    margin: 5rem 0rem 0rem;
    text-transform: uppercase;
  }
  .footer-container .footer-content .copyright span {
    margin: 0rem 0rem 0rem 1rem;
  }
}
@media (max-width: 900px) {
  .footer-container {
    padding: 6vh 1rem 3vh;
  }
  .footer-container .footer-content .footer-content-plus-links-cover {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn {
    width: 22rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn img {
    width: 15rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn .motive {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7rem;
    margin: 2rem 0rem 5rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button {
    background: transparent;
    border: 1px solid #d99201;
    border-radius: 0.5rem;
    color: #d99201;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button:hover {
    background: #d99201;
    color: #fff;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 18rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper h3 {
    font-size: 0.8rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a {
    color: #000;
    transition: color 0.3s ease-in-out;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a:hover {
    color: #d99201;
  }
  .footer-container .footer-content .copyright {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a3f22;
    margin: 5rem 0rem 0rem;
    text-transform: uppercase;
  }
  .footer-container .footer-content .copyright span {
    margin: 0rem 0rem 0rem 1rem;
  }
}
@media (max-width: 600px) {
  .footer-container {
    padding: 6vh 1rem 3vh;
  }
  .footer-container .footer-content .footer-content-plus-links-cover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn {
    width: 22rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn img {
    width: 12rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn .motive {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7rem;
    margin: 1rem 0rem 3rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button {
    background: transparent;
    border: 1px solid #d99201;
    border-radius: 0.5rem;
    color: #d99201;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button:hover {
    background: #d99201;
    color: #fff;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 18rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper h3 {
    font-size: 0.8rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a {
    color: #000;
    transition: color 0.3s ease-in-out;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a:hover {
    color: #d99201;
  }
  .footer-container .footer-content .copyright {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a3f22;
    margin: 3rem 0rem 0rem;
    text-transform: uppercase;
  }
  .footer-container .footer-content .copyright span {
    margin: 0rem 0rem 0rem 1rem;
  }
}
@media (max-width: 500px) {
  .footer-container {
    padding: 6vh 1rem 3vh;
  }
  .footer-container .footer-content .footer-content-plus-links-cover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn {
    width: 100%;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn img {
    width: 12rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn .motive {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7rem;
    margin: 1rem 0rem 3rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button {
    background: transparent;
    border: 1px solid #d99201;
    border-radius: 0.5rem;
    color: #d99201;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button:hover {
    background: #d99201;
    color: #fff;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 18rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper h3 {
    font-size: 0.8rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a {
    color: #000;
    transition: color 0.3s ease-in-out;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a:hover {
    color: #d99201;
  }
  .footer-container .footer-content .copyright {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a3f22;
    margin: 3rem 0rem 0rem;
    text-transform: uppercase;
  }
  .footer-container .footer-content .copyright span {
    margin: 0rem 0rem 0rem 1rem;
  }
}
@media (max-width: 380px) {
  .footer-container {
    padding: 6vh 1rem 3vh;
  }
  .footer-container .footer-content .footer-content-plus-links-cover {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn {
    width: 100%;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn img {
    width: 12rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn .motive {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7rem;
    margin: 1rem 0rem 3rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button {
    background: transparent;
    border: 1px solid #d99201;
    border-radius: 0.5rem;
    color: #d99201;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .logo-motive-contact-btn button:hover {
    background: #d99201;
    color: #fff;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 18rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper h3 {
    font-size: 0.8rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a {
    color: #000;
    transition: color 0.3s ease-in-out;
  }
  .footer-container .footer-content .footer-content-plus-links-cover .all-contacts-cover .single-links-wrapper ul a:hover {
    color: #d99201;
  }
  .footer-container .footer-content .copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    line-height: 0.8rem;
    font-weight: 500;
    color: #1a3f22;
    margin: 3rem 0rem 0rem;
    text-transform: uppercase;
  }
  .footer-container .footer-content .copyright span {
    margin: 0rem 0rem 0rem 0rem;
  }
}
.main-services-container {
  padding: 20vh 0rem 0vh;
}
.main-services-container .top-text-plus-btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12vh;
}
.main-services-container .top-text-plus-btn .our-srvc-heading {
  display: flex;
  gap: 5px;
  font-size: 4rem;
  line-height: 4rem;
}
.main-services-container .top-text-plus-btn .our-srvc-heading .img-srvc {
  width: 4rem;
  height: 4rem;
  background-image: url(../../images/harareCityShot.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 0.5rem;
}
.main-services-container .top-text-plus-btn .text-btn-wrapper {
  width: 30rem;
}
.main-services-container .top-text-plus-btn .text-btn-wrapper p {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
  margin: 0rem 0rem 2.5rem;
}
.main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn {
  font-size: 1rem;
  color: #000;
  background: #fff;
  padding: 0.8rem 1.7rem;
  border-radius: 2rem;
  font-weight: 500;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  transition: border-radius 0.3s ease-in-out, background 0.5s ease-in-out;
}
.main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn:hover {
  border-radius: 0.5rem;
  background: #c2c2c2;
}
.main-services-container .services-container-wrapper {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main-services-container .services-container-wrapper .service-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.main-services-container .services-container-wrapper .service-card .division-text h1 {
  font-size: 3.5rem;
  line-height: 3.5rem;
  margin-bottom: 6rem;
}
.main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn {
  width: 85%;
  padding: 0rem 0rem 1rem;
}
.main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags p {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 500;
  width: 100%;
}
.main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper button {
  padding: 0.3rem 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: #fff;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  border-radius: 2rem;
  width: -moz-max-content;
  width: max-content;
}
.main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us {
  color: #fff;
  background: #1a3f22;
  padding: 0.8rem 1.7rem;
  border-radius: 2rem;
  transition: border-radius 0.3s ease-in-out;
}
.main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us:hover {
  border-radius: 0.5rem;
}
.main-services-container .services-container-wrapper .service-card .division-image {
  border-radius: 1rem;
  background-image: url(../../images/dudeCoding.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 21rem;
}
.main-services-container .services-container-wrapper .service-card .division-image img {
  height: 100%;
  width: 100%;
}
.main-services-container .faq-mother-container {
  color: #fff;
  padding: 10vh 0rem 10vh;
  margin: 2rem 0rem 0rem;
  background: #d99201;
}
.main-services-container .faq-mother-container .mother-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 1rem;
}
.main-services-container .faq-mother-container .mother-wrapper h2 {
  font-size: 4rem;
  line-height: 3.5rem;
  margin-top: 0rem;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
  cursor: pointer;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #1a3f22;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
  transition: transform 0.3s ease-in-out;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  interpolate-size: allow-keywords;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: lighter;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
  height: auto;
}
.main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
  transform: rotate(45deg);
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .main-services-container {
    padding: 20vh 0rem 0vh;
  }
  .main-services-container .top-text-plus-btn {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 6vh;
    padding: 0rem 1rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading {
    display: flex;
    gap: 5px;
    font-size: 4rem;
    line-height: 4rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading .img-srvc {
    width: 4rem;
    height: 4rem;
    background-image: url(../../images/harareCityShot.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper {
    width: 68%;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper p {
    font-size: 1.5rem;
    line-height: 1.6rem;
    font-weight: 500;
    margin: 2rem 0rem 2.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn {
    font-size: 1rem;
    color: #000;
    background: #fff;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    font-weight: 500;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    transition: border-radius 0.3s ease-in-out, background 0.5s ease-in-out;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn:hover {
    border-radius: 0.5rem;
    background: #c2c2c2;
  }
  .main-services-container .services-container-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text h1 {
    font-size: 3.5rem;
    line-height: 3.8rem;
    margin-bottom: 3rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn {
    width: 100%;
    padding: 0rem 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags p {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 500;
    width: 100%;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper button {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-radius: 2rem;
    width: -moz-max-content;
    width: max-content;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us {
    color: #fff;
    background: #1a3f22;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    transition: border-radius 0.3s ease-in-out;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us:hover {
    border-radius: 0.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-image {
    border-radius: 1rem;
    background-image: url(../../images/dudeCoding.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }
  .main-services-container .faq-mother-container {
    color: #fff;
    padding: 4rem 1rem 2rem;
    margin: 2rem 0rem 0rem;
    background: #d99201;
  }
  .main-services-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper h2 {
    font-size: 4rem;
    line-height: 3.6rem;
    margin-top: 0rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 900px) {
  .main-services-container {
    padding: 20vh 0rem 0vh;
  }
  .main-services-container .top-text-plus-btn {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 6vh;
    padding: 0rem 1rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading {
    display: flex;
    gap: 5px;
    font-size: 4rem;
    line-height: 4rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading .img-srvc {
    width: 4rem;
    height: 4rem;
    background-image: url(../../images/harareCityShot.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper {
    width: 80%;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper p {
    font-size: 1.5rem;
    line-height: 1.6rem;
    font-weight: 500;
    margin: 2rem 0rem 2.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn {
    font-size: 1rem;
    color: #000;
    background: #fff;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    font-weight: 500;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    transition: border-radius 0.3s ease-in-out, background 0.5s ease-in-out;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn:hover {
    border-radius: 0.5rem;
    background: #c2c2c2;
  }
  .main-services-container .services-container-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text h1 {
    font-size: 3.5rem;
    line-height: 3.8rem;
    margin-bottom: 3rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn {
    width: 100%;
    padding: 0rem 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags p {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 500;
    width: 100%;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper button {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-radius: 2rem;
    width: -moz-max-content;
    width: max-content;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us {
    color: #fff;
    background: #1a3f22;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    transition: border-radius 0.3s ease-in-out;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us:hover {
    border-radius: 0.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-image {
    border-radius: 1rem;
    background-image: url(../../images/dudeCoding.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }
  .main-services-container .faq-mother-container {
    color: #fff;
    padding: 3rem 1rem 3rem;
    margin: 2rem 0rem 0rem;
    background: #d99201;
  }
  .main-services-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper h2 {
    font-size: 4rem;
    line-height: 4.3rem;
    margin-top: 0rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 600px) {
  .main-services-container {
    padding: 20vh 0rem 0vh;
  }
  .main-services-container .top-text-plus-btn {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 6vh;
    padding: 0rem 1rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    line-height: 2rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading .img-srvc {
    width: 2rem;
    height: 2rem;
    background-image: url(../../images/harareCityShot.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper {
    width: 100%;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper p {
    font-size: 1.2rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin: 2rem 0rem 2.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn {
    font-size: 1rem;
    color: #000;
    background: #fff;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    font-weight: 500;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    transition: border-radius 0.3s ease-in-out, background 0.5s ease-in-out;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn:hover {
    border-radius: 0.5rem;
    background: #c2c2c2;
  }
  .main-services-container .services-container-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 1.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn {
    width: 100%;
    padding: 0rem 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags p {
    font-size: 1.1rem;
    line-height: 1.3rem;
    font-weight: 500;
    width: 100%;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper button {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-radius: 2rem;
    width: -moz-max-content;
    width: max-content;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us {
    color: #fff;
    background: #1a3f22;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-radius 0.3s ease-in-out;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us:hover {
    border-radius: 0.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-image {
    border-radius: 1rem;
    background-image: url(../../images/dudeCoding.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }
  .main-services-container .faq-mother-container {
    color: #fff;
    padding: 2.5rem 1rem 2rem;
    margin: 2rem 0rem 0rem;
    background: #d99201;
  }
  .main-services-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper h2 {
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 0rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.1rem;
    line-height: 1.6rem;
    font-weight: 500;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
    padding-top: 5px;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 500px) {
  .main-services-container {
    padding: 20vh 0rem 0vh;
  }
  .main-services-container .top-text-plus-btn {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 6vh;
    padding: 0rem 1rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    line-height: 2rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading .img-srvc {
    width: 2rem;
    height: 2rem;
    background-image: url(../../images/harareCityShot.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper {
    width: 100%;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper p {
    font-size: 1.2rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin: 2rem 0rem 2.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn {
    font-size: 1rem;
    color: #000;
    background: #fff;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    font-weight: 500;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    transition: border-radius 0.3s ease-in-out, background 0.5s ease-in-out;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn:hover {
    border-radius: 0.5rem;
    background: #c2c2c2;
  }
  .main-services-container .services-container-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text h1 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn {
    width: 100%;
    padding: 0rem 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags p {
    font-size: 1.1rem;
    line-height: 1.3rem;
    font-weight: 500;
    width: 100%;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper button {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-radius: 2rem;
    width: -moz-max-content;
    width: max-content;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us {
    color: #fff;
    background: #1a3f22;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-radius 0.3s ease-in-out;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us:hover {
    border-radius: 0.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-image {
    border-radius: 1rem;
    background-image: url(../../images/dudeCoding.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }
  .main-services-container .faq-mother-container {
    color: #fff;
    padding: 2.5rem 1rem 2rem;
    margin: 2rem 0rem 0rem;
    background: #d99201;
  }
  .main-services-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper h2 {
    font-size: 2rem;
    line-height: 2.3rem;
    margin-top: 0rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 1.5rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.1rem;
    line-height: 1.6rem;
    font-weight: 500;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
    padding-top: 5px;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 350px) {
  .main-services-container {
    padding: 20vh 0rem 0vh;
  }
  .main-services-container .top-text-plus-btn {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 6vh;
    padding: 0rem 1rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading {
    display: flex;
    gap: 5px;
    font-size: 2rem;
    line-height: 2rem;
  }
  .main-services-container .top-text-plus-btn .our-srvc-heading .img-srvc {
    width: 2rem;
    height: 2rem;
    background-image: url(../../images/harareCityShot.jpg);
    background-size: cover;
    background-position: center;
    border-radius: 0.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper {
    width: 100%;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper p {
    font-size: 1.2rem;
    line-height: 1.3rem;
    font-weight: 500;
    margin: 2rem 0rem 2.5rem;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn {
    font-size: 1rem;
    color: #000;
    background: #fff;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    font-weight: 500;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    transition: border-radius 0.3s ease-in-out, background 0.5s ease-in-out;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .main-services-container .top-text-plus-btn .text-btn-wrapper .connect-btn:hover {
    border-radius: 0.5rem;
    background: #c2c2c2;
  }
  .main-services-container .services-container-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text h1 {
    font-size: 1.5rem;
    line-height: 1.7rem;
    margin-bottom: 1.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn {
    width: 100%;
    padding: 0rem 0rem 1rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags p {
    font-size: 1.1rem;
    line-height: 1.3rem;
    font-weight: 500;
    width: 100%;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .text-tags .tags-wrapper button {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-radius: 2rem;
    width: -moz-max-content;
    width: max-content;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us {
    color: #fff;
    background: #1a3f22;
    padding: 0.8rem 1.7rem;
    border-radius: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-radius 0.3s ease-in-out;
  }
  .main-services-container .services-container-wrapper .service-card .division-text .text-srvcs-btn .connect-with-us:hover {
    border-radius: 0.5rem;
  }
  .main-services-container .services-container-wrapper .service-card .division-image {
    border-radius: 1rem;
    background-image: url(../../images/dudeCoding.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
  }
  .main-services-container .faq-mother-container {
    color: #fff;
    padding: 2.5rem 1rem 2rem;
    margin: 2rem 0rem 0rem;
    background: #d99201;
  }
  .main-services-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper h2 {
    font-size: 2rem;
    line-height: 2.3rem;
    margin-top: 0rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 500;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
    padding-top: 5px;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .main-services-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
.designs-mother-container {
  padding: 15vh 0rem 0vh;
}
.designs-mother-container .heading-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: center;
}
.designs-mother-container .heading-text-wrapper .main-heading {
  font-size: 4rem;
  line-height: 4.2rem;
  width: 80%;
  text-align: center;
}
.designs-mother-container .heading-text-wrapper .text-section {
  font-size: 1.1rem;
  line-height: 1.4rem;
  width: 42%;
  text-align: center;
  font-weight: 400;
}
.designs-mother-container .portfolio-wrapper {
  background: #1a3f22;
  margin-top: 6vh;
  border-top: #d99101 1px solid;
  padding-bottom: 8vh;
}
.designs-mother-container .portfolio-wrapper .designs-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 10vh;
  color: #fff;
}
.designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image {
  border-radius: 0.5rem;
  height: 21rem;
  background-image: url(../../images/websites/website-one.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  margin-bottom: 2rem;
  overflow: hidden;
}
.designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image:hover img {
  width: 110%;
  height: 110%;
  transform: translateX(-5%);
}
.designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
}
.designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name:hover {
  text-decoration: none;
}
.designs-mother-container .portfolio-wrapper .designs-sections .design-item hr {
  margin: 1rem 0rem 0rem;
  border: none;
  height: 1px;
  background: rgba(217, 145, 1, 0.4509803922);
}
.designs-mother-container .portfolio-wrapper .designs-sections .design-item p {
  font-size: 1.1rem;
  padding: 1rem 0rem 0rem;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .designs-mother-container {
    padding: 15vh 0rem 0vh;
  }
  .designs-mother-container .heading-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  .designs-mother-container .heading-text-wrapper .main-heading {
    font-size: 4rem;
    line-height: 4.2rem;
    width: 80%;
    text-align: center;
  }
  .designs-mother-container .heading-text-wrapper .text-section {
    font-size: 1.1rem;
    line-height: 1.4rem;
    width: 52%;
    text-align: center;
    font-weight: 400;
  }
  .designs-mother-container .portfolio-wrapper {
    background: #1a3f22;
    margin-top: 6vh;
    border-top: #d99101 1px solid;
    padding-bottom: 5vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    row-gap: 3rem;
    margin-top: 6vh;
    color: #fff;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image {
    border-radius: 0.5rem;
    height: 18rem;
    background-image: url(../../images/websites/website-one.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name:hover {
    text-decoration: none;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item hr {
    margin: 1rem 0rem 0rem;
    border: none;
    height: 1px;
    background: rgba(217, 145, 1, 0.4509803922);
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item p {
    font-size: 1.1rem;
    padding: 1rem 0rem 0rem;
  }
}
@media (max-width: 900px) {
  .designs-mother-container {
    padding: 15vh 0rem 0vh;
  }
  .designs-mother-container .heading-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    padding: 0rem 1rem 0rem;
  }
  .designs-mother-container .heading-text-wrapper .main-heading {
    font-size: 4rem;
    line-height: 4.2rem;
    width: 100%;
    text-align: center;
  }
  .designs-mother-container .heading-text-wrapper .text-section {
    font-size: 1.1rem;
    line-height: 1.4rem;
    width: 62%;
    text-align: center;
    font-weight: 400;
  }
  .designs-mother-container .portfolio-wrapper {
    background: #1a3f22;
    margin-top: 6vh;
    border-top: #d99101 1px solid;
    padding-bottom: 5vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    row-gap: 3rem;
    margin-top: 6vh;
    color: #fff;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image {
    border-radius: 0.5rem;
    height: 26rem;
    background-image: url(../../images/websites/website-one.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name:hover {
    text-decoration: none;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item hr {
    margin: 1rem 0rem 0rem;
    border: none;
    height: 1px;
    background: rgba(217, 145, 1, 0.4509803922);
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item p {
    font-size: 1.1rem;
    padding: 1rem 0rem 0rem;
  }
}
@media (max-width: 600px) {
  .designs-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .designs-mother-container .heading-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 0rem 1rem 0rem;
  }
  .designs-mother-container .heading-text-wrapper .main-heading {
    font-size: 2rem;
    line-height: 2.2rem;
    width: 100%;
    text-align: center;
  }
  .designs-mother-container .heading-text-wrapper .text-section {
    font-size: 1.1rem;
    line-height: 1.4rem;
    width: 100%;
    text-align: center;
    font-weight: 400;
  }
  .designs-mother-container .portfolio-wrapper {
    background: #1a3f22;
    margin-top: 6vh;
    padding-bottom: 5vh;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: #d99101 1px solid;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    row-gap: 3rem;
    margin-top: 6vh;
    color: #fff;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image {
    border-radius: 0.5rem;
    height: 18rem;
    background-image: url(../../images/websites/website-one.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #fff;
    padding: 0rem 1rem 0rem;
    text-decoration: underline;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name:hover {
    text-decoration: none;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item hr {
    margin: 1rem 1rem 0rem;
    border: none;
    height: 1px;
    background: rgba(217, 145, 1, 0.4509803922);
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item p {
    font-size: 1.1rem;
    padding: 1rem 1rem 0rem;
  }
}
@media (max-width: 500px) {
  .designs-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .designs-mother-container .heading-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 0rem 1rem 0rem;
  }
  .designs-mother-container .heading-text-wrapper .main-heading {
    font-size: 2rem;
    line-height: 2.2rem;
    width: 100%;
    text-align: center;
  }
  .designs-mother-container .heading-text-wrapper .text-section {
    font-size: 1.1rem;
    line-height: 1.4rem;
    width: 100%;
    text-align: center;
    font-weight: 400;
  }
  .designs-mother-container .portfolio-wrapper {
    background: #1a3f22;
    margin-top: 6vh;
    padding-bottom: 5vh;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: #d99101 1px solid;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    row-gap: 3rem;
    margin-top: 6vh;
    color: #fff;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image {
    border-radius: 0.5rem;
    height: 15rem;
    background-image: url(../../images/websites/website-one.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #fff;
    padding: 0rem 1rem 0rem;
    text-decoration: underline;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name:hover {
    text-decoration: none;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item hr {
    margin: 1rem 1rem 0rem;
    border: none;
    height: 1px;
    background: rgba(217, 145, 1, 0.4509803922);
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item p {
    font-size: 1.1rem;
    padding: 1rem 1rem 0rem;
  }
}
@media (max-width: 400px) {
  .designs-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .designs-mother-container .heading-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 0rem 1rem 0rem;
  }
  .designs-mother-container .heading-text-wrapper .main-heading {
    font-size: 2rem;
    line-height: 2.2rem;
    width: 100%;
    text-align: center;
  }
  .designs-mother-container .heading-text-wrapper .text-section {
    font-size: 1.1rem;
    line-height: 1.4rem;
    width: 100%;
    text-align: center;
    font-weight: 400;
  }
  .designs-mother-container .portfolio-wrapper {
    background: #1a3f22;
    margin-top: 6vh;
    padding-bottom: 5vh;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: #d99101 1px solid;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    row-gap: 3rem;
    margin-top: 6vh;
    color: #fff;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image {
    border-radius: 0.5rem;
    height: 13rem;
    background-image: url(../../images/websites/website-one.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #fff;
    padding: 0rem 1rem 0rem;
    text-decoration: underline;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name:hover {
    text-decoration: none;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item hr {
    margin: 1rem 1rem 0rem;
    border: none;
    height: 1px;
    background: rgba(217, 145, 1, 0.4509803922);
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item p {
    font-size: 1.1rem;
    padding: 1rem 1rem 0rem;
  }
}
@media (max-width: 350px) {
  .designs-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .designs-mother-container .heading-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding: 0rem 1rem 0rem;
  }
  .designs-mother-container .heading-text-wrapper .main-heading {
    font-size: 2rem;
    line-height: 2.2rem;
    width: 100%;
    text-align: center;
  }
  .designs-mother-container .heading-text-wrapper .text-section {
    font-size: 1.1rem;
    line-height: 1.4rem;
    width: 100%;
    text-align: center;
    font-weight: 400;
  }
  .designs-mother-container .portfolio-wrapper {
    background: #1a3f22;
    margin-top: 6vh;
    padding-bottom: 5vh;
    padding-left: 1rem;
    padding-right: 1rem;
    border-top: #d99101 1px solid;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    row-gap: 3rem;
    margin-top: 6vh;
    color: #fff;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-image {
    border-radius: 0.5rem;
    height: 11rem;
    background-image: url(../../images/websites/website-one.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-bottom: 2rem;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name {
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #fff;
    padding: 0rem 1rem 0rem;
    text-decoration: underline;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item .design-name:hover {
    text-decoration: none;
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item hr {
    margin: 1rem 1rem 0rem;
    border: none;
    height: 1px;
    background: rgba(217, 145, 1, 0.4509803922);
  }
  .designs-mother-container .portfolio-wrapper .designs-sections .design-item p {
    font-size: 1.1rem;
    padding: 1rem 1rem 0rem;
  }
}
.clive-movies-mother-container {
  padding: 20vh 0rem 0vh;
}
.clive-movies-mother-container .header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10vh;
}
.clive-movies-mother-container .header-container .label {
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  position: relative;
}
.clive-movies-mother-container .header-container .label::before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  border-top: none;
  border-left: none;
}
.clive-movies-mother-container .header-container .label h4 {
  font-size: 1rem;
}
.clive-movies-mother-container .header-container .main-project-name {
  font-size: 4rem;
  line-height: 4.2rem;
  margin: 1rem 0rem 1.5rem;
}
.clive-movies-mother-container .header-container .link-to-site {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-decoration: underline;
}
.clive-movies-mother-container .header-container .link-to-site:hover {
  text-decoration: none;
}
.clive-movies-mother-container .mother-cover-wrapper {
  padding: 15vh 0rem 12vh;
  background: #1a3f22;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
  height: 50rem;
  border-radius: 1rem;
  border: #fff solid 1px;
  overflow: hidden;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
  width: 100%;
  height: 100%;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
  height: 40rem;
  border-radius: 1rem;
  border: #fff solid 1px;
  overflow: hidden;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
  width: 100%;
  height: 100%;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
  height: 40rem;
  border-radius: 1rem;
  border: #fff solid 1px;
  overflow: hidden;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
  width: 100%;
  height: 100%;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
  height: 40rem;
  border-radius: 1rem;
  border: #fff solid 1px;
  margin-top: 6rem;
  overflow: hidden;
}
.clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
  width: 100%;
  height: 100%;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 5rem 1rem 4rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 46rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 33rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 33rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 40rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 4rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 920px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 5rem 1rem 4rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 40rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 30rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 30rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 35rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 4rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 850px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 4rem 1rem 3rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 36rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 26rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 26rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 29rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 3rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 800px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 4rem 1rem 3rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 33rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 26rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 26rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 26rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 3rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 600px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 2.5rem;
    line-height: 2.7rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 3rem 1rem 3rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 23rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 18rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 18rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 20rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 2rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 500px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 2.5rem;
    line-height: 2.7rem;
    margin: 1rem 0rem 1.5rem;
    text-align: center;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 3rem 1rem 3rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 20rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 28rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 28rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 18rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 2rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 400px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 2.5rem;
    line-height: 2.7rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 3rem 1rem 3rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 17rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 24rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 24rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 16rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 2rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 380px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 2.5rem;
    line-height: 2.7rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 3rem 1rem 3rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 16rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 23rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 23rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 14rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 2rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 350px) {
  .clive-movies-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .clive-movies-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0rem 1rem;
  }
  .clive-movies-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .clive-movies-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .clive-movies-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .clive-movies-mother-container .header-container .main-project-name {
    font-size: 2.5rem;
    line-height: 2.7rem;
    margin: 1rem 0rem 1.5rem;
  }
  .clive-movies-mother-container .header-container .link-to-site {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
  }
  .clive-movies-mother-container .header-container .link-to-site:hover {
    text-decoration: underline;
  }
  .clive-movies-mother-container .mother-cover-wrapper {
    padding: 3rem 1rem 3rem;
    background: #1a3f22;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image {
    height: 14rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .top-image img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one {
    height: 21rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-one img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two {
    height: 21rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .middle-images-grid .image-two img {
    width: 100%;
    height: 100%;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image {
    height: 12rem;
    border-radius: 1rem;
    border: #fff solid 1px;
    margin-top: 2rem;
    overflow: hidden;
  }
  .clive-movies-mother-container .mother-cover-wrapper .images-cover-wrapper .bottom-image img {
    width: 100%;
    height: 100%;
  }
}
.pricing-mother-container {
  padding: 20vh 0rem 0vh;
}
.pricing-mother-container .header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8vh;
}
.pricing-mother-container .header-container .label {
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  position: relative;
}
.pricing-mother-container .header-container .label::before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
  width: 0.8rem;
  height: 0.8rem;
  background: #fff;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  border-top: none;
  border-left: none;
}
.pricing-mother-container .header-container .label h4 {
  font-size: 1rem;
}
.pricing-mother-container .header-container .pricing-slogan {
  font-size: 4rem;
  line-height: 4.2rem;
  margin: 1rem 0rem 0rem;
}
.pricing-mother-container hr {
  border: none;
  height: 2px;
  background-color: #d99201;
}
.pricing-mother-container .pricing-tags-cover-wrapper {
  padding: 12vh 0rem 0vh;
  background: #1a3f22;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10vh;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper {
  width: 20rem;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  background: #fff;
  border-radius: 1rem 1rem 0rem 0rem;
  padding: 0rem 0rem 3rem;
  position: relative;
  height: -moz-max-content;
  height: max-content;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service {
  background-color: #30d5c8;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem 1rem 0rem 0rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h3 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 5px;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h5 {
  font-size: 1.2rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money {
  display: flex;
  justify-self: center;
  padding: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .currency {
  font-size: 1.2rem;
  font-weight: 700;
  align-self: flex-end;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number {
  font-size: 3.5rem;
  line-height: 3rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .commer {
  font-size: 2rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto {
  font-size: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto span {
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .list-of-packages-included li {
  font-size: 1rem;
  border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
  padding: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service {
  padding: 1rem;
  background-color: #30d5c8;
  display: flex;
  justify-content: center;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service h5 {
  font-size: 2rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .contact-us {
  padding: 0.7rem;
  background-color: #30d5c8;
  font-size: 1rem;
  border-radius: 2rem;
  display: flex;
  width: 70%;
  justify-content: center;
  justify-self: center;
  color: #fff;
  position: absolute;
  bottom: -1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: background-color 0.3s ease-in-out;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .contact-us:hover {
  background-color: #000;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower {
  width: 20rem;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  background: #fff;
  border-radius: 1rem 1rem 0rem 0rem;
  padding: 0rem 0rem 3rem;
  position: relative;
  height: -moz-max-content;
  height: max-content;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower {
  background-color: #f39091;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem 1rem 0rem 0rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h3 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 5px;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h5 {
  font-size: 1.2rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money {
  display: flex;
  justify-self: center;
  padding: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .currency {
  font-size: 1.2rem;
  font-weight: 700;
  align-self: flex-end;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number {
  font-size: 3.5rem;
  line-height: 3rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .commer {
  font-size: 2rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto {
  font-size: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto span {
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .list-of-packages-included li {
  font-size: 1rem;
  border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
  padding: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service {
  padding: 1rem;
  background-color: #f39091;
  display: flex;
  justify-content: center;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service h5 {
  font-size: 2rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .contact-us {
  padding: 0.7rem;
  background-color: #f39091;
  font-size: 1rem;
  border-radius: 2rem;
  display: flex;
  width: 70%;
  justify-content: center;
  justify-self: center;
  color: #fff;
  position: absolute;
  bottom: -1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: background-color 0.3s ease-in-out;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .contact-us:hover {
  background-color: #000;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale {
  width: 20rem;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  background: #fff;
  border-radius: 1rem 1rem 0rem 0rem;
  padding: 0rem 0rem 3rem;
  position: relative;
  height: -moz-max-content;
  height: max-content;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale {
  background-color: #c8af3a;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 1rem 1rem 0rem 0rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h3 {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 5px;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h5 {
  font-size: 1.2rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money {
  display: flex;
  justify-self: center;
  padding: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .currency {
  font-size: 1.2rem;
  font-weight: 700;
  align-self: flex-end;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number {
  font-size: 3.5rem;
  line-height: 3rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus {
  display: flex;
  flex-direction: column;
  align-self: flex-end;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .commer {
  font-size: 2rem;
  line-height: 1.5rem;
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto {
  font-size: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto span {
  font-weight: 700;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .list-of-packages-included li {
  font-size: 1rem;
  border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
  padding: 1rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service {
  padding: 1rem;
  background-color: #c8af3a;
  display: flex;
  justify-content: center;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service h5 {
  font-size: 2rem;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .contact-us {
  padding: 0.7rem;
  background-color: #c8af3a;
  font-size: 1rem;
  border-radius: 2rem;
  display: flex;
  width: 70%;
  justify-content: center;
  justify-self: center;
  color: #fff;
  position: absolute;
  bottom: -1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  transition: background-color 0.3s ease-in-out;
}
.pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .contact-us:hover {
  background-color: #000;
}

.zaliv-mother-container {
  background: #efefef;
  padding: 8vh 0rem 8vh;
}
.zaliv-mother-container .company-name-plus-logo {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 8px;
  line-height: 4rem;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  color: #d87f2b;
  margin: 0rem 0rem 2.5rem;
}
.zaliv-mother-container .company-name-plus-logo span {
  color: #005a32;
  margin-right: -8px;
}
.zaliv-mother-container .company-name-plus-logo .logo-container {
  width: 4rem;
  height: 4rem;
  border-radius: 0.5rem;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.zaliv-mother-container .company-name-plus-logo .logo-container img {
  width: 63%;
  height: 85%;
}
.zaliv-mother-container .zaliv-explanation {
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-align: center;
  margin: 0rem 0rem 4rem;
}
.zaliv-mother-container .zaliv-explanation .muzala-creatives {
  color: #d87f2b;
  font-weight: bold;
  text-decoration: underline;
}
.zaliv-mother-container .zaliv-explanation .muzala-creatives span {
  text-decoration: underline;
}
.zaliv-mother-container .zaliv-explanation .muzala-creatives:hover span {
  text-decoration: none;
}
.zaliv-mother-container .logo-mother-container {
  width: 25rem;
  justify-self: center;
}
.zaliv-mother-container .logo-mother-container .logo-wrapper {
  width: 100%;
  height: 13rem;
  margin: 0rem 0rem 2rem;
}
.zaliv-mother-container .logo-mother-container .logo-wrapper img {
  width: 100%;
  height: 100%;
}
.zaliv-mother-container .logo-mother-container .action-button-cover {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.zaliv-mother-container .logo-mother-container .action-button-cover a {
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  background: #1a3f22;
  border: #1a3f22 1px solid;
  display: flex;
  justify-content: center;
  width: 50%;
  transition: background 0.3s ease-in-out;
}
.zaliv-mother-container .logo-mother-container .action-button-cover a:hover {
  background: transparent;
  color: #1a3f22;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .pricing-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .pricing-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
  }
  .pricing-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .pricing-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .pricing-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .pricing-mother-container .header-container .pricing-slogan {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .pricing-mother-container hr {
    border: none;
    height: 2px;
    background-color: #d99201;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper {
    padding: 6vh 1rem 0vh;
    background: #1a3f22;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 6vh;
    gap: 5rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper {
    width: 45%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service {
    background-color: #30d5c8;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service {
    padding: 1rem;
    background-color: #30d5c8;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .contact-us {
    padding: 0.7rem;
    background-color: #30d5c8;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower {
    width: 45%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower {
    background-color: #f39091;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service {
    padding: 1rem;
    background-color: #f39091;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .contact-us {
    padding: 0.7rem;
    background-color: #f39091;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale {
    width: 45%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale {
    background-color: #c8af3a;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service {
    padding: 1rem;
    background-color: #c8af3a;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .contact-us {
    padding: 0.7rem;
    background-color: #c8af3a;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .zaliv-mother-container {
    background: #efefef;
    padding: 6vh 1rem 4vh;
  }
  .zaliv-mother-container .company-name-plus-logo {
    font-size: 4rem;
    font-weight: bold;
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d87f2b;
    margin: 0rem 0rem 2.2rem;
  }
  .zaliv-mother-container .company-name-plus-logo span {
    color: #005a32;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container img {
    width: 63%;
    height: 85%;
  }
  .zaliv-mother-container .zaliv-explanation {
    font-size: 1.5rem;
    line-height: 1.8rem;
    text-align: center;
    margin: 0rem 0rem 4rem;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives {
    color: #d87f2b;
    font-weight: bold;
    text-decoration: underline;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives:hover {
    text-decoration: none;
  }
  .zaliv-mother-container .logo-mother-container {
    width: 25rem;
    justify-self: center;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper {
    width: 100%;
    height: 12rem;
    margin: 0rem 0rem 2rem;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a {
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    display: flex;
    justify-content: center;
    width: 50%;
    transition: background 0.3s ease-in-out;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a:hover {
    background: transparent;
    color: #1a3f22;
  }
}
@media (max-width: 900px) {
  .pricing-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .pricing-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
  }
  .pricing-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .pricing-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .pricing-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .pricing-mother-container .header-container .pricing-slogan {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .pricing-mother-container hr {
    border: none;
    height: 2px;
    background-color: #d99201;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper {
    padding: 6vh 1rem 0vh;
    background: #1a3f22;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 6vh;
    gap: 3rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper {
    width: 45%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service {
    background-color: #30d5c8;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service {
    padding: 1rem;
    background-color: #30d5c8;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .contact-us {
    padding: 0.7rem;
    background-color: #30d5c8;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower {
    width: 45%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower {
    background-color: #f39091;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service {
    padding: 1rem;
    background-color: #f39091;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .contact-us {
    padding: 0.7rem;
    background-color: #f39091;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale {
    width: 45%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale {
    background-color: #c8af3a;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service {
    padding: 1rem;
    background-color: #c8af3a;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .contact-us {
    padding: 0.7rem;
    background-color: #c8af3a;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
}
@media (max-width: 600px) {
  .pricing-mother-container {
    padding: 20vh 0rem 0vh;
  }
  .pricing-mother-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
  }
  .pricing-mother-container .header-container .label {
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
  }
  .pricing-mother-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #fff;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .pricing-mother-container .header-container .label h4 {
    font-size: 1rem;
  }
  .pricing-mother-container .header-container .pricing-slogan {
    font-size: 2rem;
    line-height: 2.4rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .pricing-mother-container hr {
    border: none;
    height: 2px;
    background-color: #d99201;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper {
    padding: 6vh 1rem 0vh;
    background: #1a3f22;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 8vh;
    gap: 4rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper {
    width: 100%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service {
    background-color: #30d5c8;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .web-service h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service {
    padding: 1rem;
    background-color: #30d5c8;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper .contact-us {
    padding: 0.7rem;
    background-color: #30d5c8;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower {
    width: 100%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower {
    background-color: #f39091;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .web-service-grower h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service {
    padding: 1rem;
    background-color: #f39091;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-grower .contact-us {
    padding: 0.7rem;
    background-color: #f39091;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale {
    width: 100%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    background: #fff;
    border-radius: 1rem 1rem 0rem 0rem;
    padding: 0rem 0rem 3rem;
    position: relative;
    height: -moz-max-content;
    height: max-content;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale {
    background-color: #c8af3a;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 1rem 1rem 0rem 0rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h3 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 5px;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .web-service-scale h5 {
    font-size: 1.2rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money {
    display: flex;
    justify-self: center;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .currency {
    font-size: 1.2rem;
    font-weight: 700;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number {
    font-size: 3.5rem;
    line-height: 3rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .commer {
    font-size: 2rem;
    line-height: 1.5rem;
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto {
    font-size: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .price-money .number-plus .upto span {
    font-weight: 700;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .list-of-packages-included li {
    font-size: 1rem;
    border-bottom: rgba(194, 194, 194, 0.4431372549) 1px solid;
    padding: 1rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service {
    padding: 1rem;
    background-color: #c8af3a;
    display: flex;
    justify-content: center;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .digital-service h5 {
    font-size: 2rem;
  }
  .pricing-mother-container .pricing-tags-cover-wrapper .wrapper-flex .card-wrapper-scale .contact-us {
    padding: 0.7rem;
    background-color: #c8af3a;
    font-size: 1rem;
    border-radius: 2rem;
    display: flex;
    width: 70%;
    justify-content: center;
    justify-self: center;
    color: #fff;
    position: absolute;
    bottom: -1.3rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .zaliv-mother-container {
    background: #efefef;
    padding: 4vh 1rem 5vh;
  }
  .zaliv-mother-container .company-name-plus-logo {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d87f2b;
    margin: 0rem 0rem 1.5rem;
  }
  .zaliv-mother-container .company-name-plus-logo span {
    color: #005a32;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container img {
    width: 59%;
    height: 80%;
  }
  .zaliv-mother-container .zaliv-explanation {
    font-size: 1.3rem;
    line-height: 1.6rem;
    text-align: center;
    margin: -0.5rem 0rem 3rem;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives {
    color: #d87f2b;
    font-weight: bold;
    text-decoration: underline;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives:hover {
    text-decoration: none;
  }
  .zaliv-mother-container .logo-mother-container {
    width: 100%;
    justify-self: center;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper {
    width: 100%;
    height: 15rem;
    margin: 0rem 0rem 2rem;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a {
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    display: flex;
    justify-content: center;
    width: 50%;
    transition: background 0.3s ease-in-out;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a:hover {
    background: transparent;
    color: #1a3f22;
  }
}
@media (max-width: 500px) {
  .zaliv-mother-container {
    background: #efefef;
    padding: 4vh 1rem 5vh;
  }
  .zaliv-mother-container .company-name-plus-logo {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d87f2b;
    margin: 0rem 0rem 1rem;
    letter-spacing: 2px;
    gap: 5px;
  }
  .zaliv-mother-container .company-name-plus-logo span {
    color: #005a32;
    margin-right: -1px;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container img {
    width: 59%;
    height: 80%;
  }
  .zaliv-mother-container .zaliv-explanation {
    font-size: 1.3rem;
    line-height: 1.7rem;
    text-align: center;
    margin: 0rem 0rem 3rem;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives {
    color: #d87f2b;
    font-weight: bold;
    text-decoration: underline;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives:hover {
    text-decoration: none;
  }
  .zaliv-mother-container .logo-mother-container {
    width: 100%;
    justify-self: center;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper {
    width: 100%;
    height: 12rem;
    margin: 0rem 0rem 2rem;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a {
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    display: flex;
    justify-content: center;
    width: 50%;
    transition: background 0.3s ease-in-out;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a:hover {
    background: transparent;
    color: #1a3f22;
  }
}
@media (max-width: 400px) {
  .zaliv-mother-container {
    background: #efefef;
    padding: 4vh 1rem 5vh;
  }
  .zaliv-mother-container .company-name-plus-logo {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 2rem;
    letter-spacing: 5px;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    color: #d87f2b;
    margin: 0rem 0rem 2rem;
  }
  .zaliv-mother-container .company-name-plus-logo span {
    color: #005a32;
    margin-right: -5px;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container img {
    width: 59%;
    height: 80%;
  }
  .zaliv-mother-container .zaliv-explanation {
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-align: center;
    margin: 0rem 0rem 3rem;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives {
    color: #d87f2b;
    font-weight: bold;
    text-decoration: underline;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives:hover {
    text-decoration: none;
  }
  .zaliv-mother-container .logo-mother-container {
    width: 100%;
    justify-self: center;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper {
    width: 100%;
    height: 12rem;
    margin: 0rem 0rem 2rem;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a {
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    display: flex;
    width: 100%;
    justify-content: center;
    transition: background 0.3s ease-in-out;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a:hover {
    background: transparent;
    color: #1a3f22;
  }
}
@media (max-width: 370px) {
  .zaliv-mother-container {
    background: #efefef;
    padding: 3vh 1rem 5vh;
  }
  .zaliv-mother-container .company-name-plus-logo {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d87f2b;
    margin: 0rem 0rem 1rem;
  }
  .zaliv-mother-container .company-name-plus-logo span {
    color: #005a32;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container img {
    width: 59%;
    height: 80%;
  }
  .zaliv-mother-container .zaliv-explanation {
    font-size: 1.3rem;
    line-height: 1.7rem;
    text-align: center;
    margin: 0rem 0rem 3rem;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives {
    color: #d87f2b;
    font-weight: bold;
    text-decoration: underline;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives:hover {
    text-decoration: none;
  }
  .zaliv-mother-container .logo-mother-container {
    width: 100%;
    justify-self: center;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper {
    width: 100%;
    height: 11rem;
    margin: 0rem 0rem 2rem;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a {
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    display: flex;
    width: 100%;
    justify-content: center;
    transition: background 0.3s ease-in-out;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a:hover {
    background: transparent;
    color: #1a3f22;
  }
}
@media (max-width: 355px) {
  .zaliv-mother-container {
    background: #efefef;
    padding: 3vh 1rem 5vh;
  }
  .zaliv-mother-container .company-name-plus-logo {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d87f2b;
    margin: 0rem 0rem 1rem;
  }
  .zaliv-mother-container .company-name-plus-logo span {
    color: #005a32;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .zaliv-mother-container .company-name-plus-logo .logo-container img {
    width: 59%;
    height: 80%;
  }
  .zaliv-mother-container .zaliv-explanation {
    font-size: 1.3rem;
    line-height: 1.8rem;
    text-align: center;
    margin: -0.5rem 0rem 3rem;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives {
    color: #d87f2b;
    font-weight: bold;
    text-decoration: underline;
  }
  .zaliv-mother-container .zaliv-explanation .muzala-creatives:hover {
    text-decoration: none;
  }
  .zaliv-mother-container .logo-mother-container {
    width: 100%;
    justify-self: center;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper {
    width: 100%;
    height: 10rem;
    margin: 0rem 0rem 2rem;
  }
  .zaliv-mother-container .logo-mother-container .logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a {
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    display: flex;
    width: 100%;
    justify-content: center;
    transition: background 0.3s ease-in-out;
  }
  .zaliv-mother-container .logo-mother-container .action-button-cover a:hover {
    background: transparent;
    color: #1a3f22;
  }
}
.abour-us-mother-wrapper-container {
  padding: 20vh 0rem 0vh;
}
.abour-us-mother-wrapper-container .header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6vh;
}
.abour-us-mother-wrapper-container .header-container .label {
  background: #d99201;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  position: relative;
  align-self: flex-end;
  margin-right: 16rem;
}
.abour-us-mother-wrapper-container .header-container .label::before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 20%;
  transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
  width: 0.8rem;
  height: 0.8rem;
  background: #d99201;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  border-top: none;
  border-left: none;
}
.abour-us-mother-wrapper-container .header-container .label h4 {
  font-size: 1rem;
}
.abour-us-mother-wrapper-container .header-container .pricing-slogan {
  font-size: 4rem;
  line-height: 4.2rem;
  margin: 1rem 0rem 0rem;
}
.abour-us-mother-wrapper-container .header-container .quote {
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-weight: 600;
  width: 45%;
  margin: 7vh 0rem 0rem;
  text-align: center;
}
.abour-us-mother-wrapper-container .header-container .quote .company-name span {
  background-image: linear-gradient(to right, #1a3f22, #d99201);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.abour-us-mother-wrapper-container hr {
  border: none;
  height: 1px;
  background-color: #d99201;
}
.abour-us-mother-wrapper-container .our-team-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #d99201;
  padding: 5vh 0rem 15vh;
}
.abour-us-mother-wrapper-container .our-team-text-wrapper .label {
  font-size: 3rem;
  line-height: 3rem;
}
.abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
  font-size: 0.8rem;
  line-height: 1.2rem;
  width: 7rem;
  margin-top: 0.5rem;
}
.abour-us-mother-wrapper-container .our-team-text-wrapper .members {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.1rem;
  display: flex;
  gap: 5px;
}
.abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
  font-size: 1rem;
  line-height: 0.8rem;
  font-weight: 600;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  border: #d99201 solid 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.abour-us-mother-wrapper-container .idea {
  color: #d99201;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 500;
  padding: 0rem 0rem 10vh;
}
.abour-us-mother-wrapper-container .idea .clive-web-solutions {
  font-family: "Times New Roman", Times, serif !important;
  font-style: italic;
}
.abour-us-mother-wrapper-container .idea .clive-web-solutions span {
  font-family: "Times New Roman", Times, serif !important;
  height: inherit;
  padding: 0rem;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper {
  background: #1a3f22;
  color: #fff;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
  padding: 10vh 0rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
  width: 25rem;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
  height: 20rem;
  width: 85%;
  border: #d99201 solid 1rem;
  border-radius: 2px;
  justify-self: center;
  transform: rotate(3deg);
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  background-image: url(../../images/Profiles/Thee-Clive-Chuma.jpeg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
  font-size: 1rem;
  line-height: 1.3rem;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
  width: 25rem;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
  height: 20rem;
  width: 85%;
  border: #d99201 solid 1rem;
  border-radius: 2px;
  justify-self: center;
  transform: rotate(-3deg);
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  background-image: url(../../images/Profiles/Mzala\ Pic.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
  font-size: 1rem;
  line-height: 1.3rem;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
  color: #d99201;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala span {
  text-decoration: underline;
}
.abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala:hover span {
  text-decoration: none;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
  padding: 8vh 0rem 6vh;
  /*NEW SECTION FOR ABOUT ZALIV DIGITAL*/
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
  width: -moz-max-content;
  width: max-content;
  justify-self: center;
  margin: 0rem 0rem 3rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
  background: #d99201;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  position: relative;
  margin: 0rem 0rem 1rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 40%;
  transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
  width: 0.8rem;
  height: 0.8rem;
  background: #d99201;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  border-top: none;
  border-left: none;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
  font-size: 1rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  letter-spacing: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #d87f2b;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
  color: #005a32;
  margin-right: -5px;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #005a32 1px solid;
  background: #fff;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
  width: 63%;
  height: 85%;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
  background: #d99201;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  width: -moz-max-content;
  width: max-content;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  position: relative;
  justify-self: flex-end;
  margin: 1.5rem 0rem 0rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 30%;
  transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
  width: 0.8rem;
  height: 0.8rem;
  background: #d99201;
  border: rgba(194, 194, 194, 0.4431372549) solid 1px;
  border-bottom: none;
  border-right: none;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
  font-size: 1rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
  border: none;
  height: 1px;
  background-color: darkgreen;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
  font-size: 4rem;
  font-weight: bolder;
  line-height: 4.3rem;
  text-align: center;
  width: 70%;
  justify-self: center;
  padding: 0rem 0rem 0.5rem;
  margin: 2rem 0rem 2rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
  font-size: 1.1rem;
  text-align: center;
  width: 40%;
  justify-self: center;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
  margin: 4rem 0rem 0rem;
  background: #cfcfcf;
  padding: 2rem;
  border-radius: 2rem;
  display: none;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
  color: darkgreen;
  margin: 0rem 0rem 1.2rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
  display: grid;
  grid-template-columns: 1fr 25rem;
  gap: 5rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
  font-weight: bold;
  color: #d99201;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency span {
  text-decoration: underline;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover span {
  text-decoration: none;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
  display: flex;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 2rem;
  color: #fff;
  background: #1a3f22;
  border: #1a3f22 1px solid;
  transition: background 0.3s ease-in-out;
  margin: 1.5rem 0rem 0rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
  background: transparent;
  color: #1a3f22;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
  border-radius: 1rem;
  border: transparent 5px solid;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
  width: 90%;
  height: 12rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container {
  margin: 4rem 0rem 0rem;
  background: #f0f0f0;
  padding: 2rem;
  border-radius: 2rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .about-tag {
  color: darkgreen;
  margin: 0rem 0rem 1.2rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .who-is-zaliv-digital {
  font-size: 1.5rem;
  line-height: 1.8rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency {
  font-weight: bold;
  color: #d99201;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency span {
  text-decoration: underline;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency:hover span {
  text-decoration: none;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container hr {
  border: none;
  height: 2px;
  background-color: darkgreen;
  margin: 2rem 0rem 2rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .get-more-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .get-more-heading::before {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  width: 5rem;
  height: 3px;
  background: #d99201;
  border-radius: 0.2rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .get-more-info {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin: 2.5rem 0rem 1.5rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .bolder-text-paragraph {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin: 0rem 0rem 2.5rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .three-elements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin: 0rem 0rem 2rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box {
  background: #fff;
  border-radius: 1rem;
  padding: 0.5rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: #005a32 1px solid;
  border-radius: 1rem;
  padding: 1rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .zaliv-digital-logo-wrapper {
  width: 8rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .zaliv-digital-logo-wrapper img {
  width: 100%;
  height: 100%;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .action-name {
  margin: 0.5rem 0rem 0.5rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .action-statement {
  text-align: center;
  font-size: 1rem;
  line-height: 1.3rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container ol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
  margin: 2.5rem 0rem 3rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container ol li {
  list-style: decimal;
  font-size: 1.2rem;
  line-height: 1.5rem;
  font-weight: normal;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container ol li::marker {
  font-weight: bold;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container ol li span {
  padding: 0rem;
  line-height: 1.25rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .view-catlog-btn {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  color: #fff;
  background: #1a3f22;
  border: #1a3f22 1px solid;
  transition: background 0.3s ease-in-out;
  margin: 1.5rem 0rem 0rem;
}
.abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-digital-mother-container .view-catlog-btn:hover {
  background: transparent;
  color: #1a3f22;
}
.abour-us-mother-wrapper-container .faq-mother-container {
  color: #fff;
  padding: 10vh 0rem 10vh;
  margin: 0rem;
  background: #efefef;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 1rem;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
  font-size: 4rem;
  line-height: 3.5rem;
  margin-top: 0rem;
  color: #1a3f22;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
  cursor: pointer;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #1a3f22;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 500;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
  transition: transform 0.3s ease-in-out;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  interpolate-size: allow-keywords;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
  padding-top: 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: lighter;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
  height: auto;
}
.abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
  transform: rotate(45deg);
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .abour-us-mother-wrapper-container {
    padding: 20vh 0rem 0vh;
  }
  .abour-us-mother-wrapper-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
    padding: 0rem 1rem 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    align-self: flex-end;
    margin-right: 8rem;
  }
  .abour-us-mother-wrapper-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 20%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .header-container .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .header-container .pricing-slogan {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 600;
    width: 60%;
    margin: 3rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote .company-name span {
    background-image: linear-gradient(to right, #1a3f22, #d99201);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .abour-us-mother-wrapper-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #d99201;
    padding: 5vh 1rem 8vh;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .label {
    font-size: 3rem;
    line-height: 3rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 7rem;
    margin-top: 0.5rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .members {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.1rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
    font-size: 1rem;
    line-height: 0.8rem;
    font-weight: 600;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: #d99201 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .abour-us-mother-wrapper-container .idea {
    color: #d99201;
    font-size: 1.8rem;
    line-height: 2.3rem;
    font-weight: 500;
    padding: 0rem 1rem 5vh;
  }
  .abour-us-mother-wrapper-container .idea .clive-web-solutions {
    font-family: "Times New Roman", Times, serif !important;
    font-style: italic;
  }
  .abour-us-mother-wrapper-container .idea .clive-web-solutions span {
    font-family: "Times New Roman", Times, serif !important;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper {
    background: #1a3f22;
    color: #fff;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
    padding: 6vh 1rem 5vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
    width: 25rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
    width: 25rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(-3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
    padding: 5vh 0rem 4vh;
    /*NEW SECTION FOR ABOUT ZALIV DIGITAL*/
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
    width: -moz-max-content;
    width: max-content;
    justify-self: center;
    margin: 0rem 0rem 3rem;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    margin: 0rem 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
    font-size: 4rem;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #d87f2b;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
    color: #005a32;
    margin-right: -5px;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
    width: 4.3rem;
    height: 4.3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #005a32 1px solid;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
    width: 63%;
    height: 85%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    justify-self: flex-end;
    margin: 1.5rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
    content: " ";
    position: absolute;
    top: 0;
    right: 30%;
    transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-bottom: none;
    border-right: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
    border: none;
    height: 1px;
    background-color: darkgreen;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
    font-size: 4rem;
    font-weight: bolder;
    line-height: 4.3rem;
    text-align: center;
    width: 90%;
    justify-self: center;
    padding: 0rem 1rem 0.5rem;
    margin: 2rem 0rem 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
    font-size: 1.1rem;
    text-align: center;
    width: 50%;
    justify-self: center;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
    margin: 3rem 1rem 0rem;
    background: #cfcfcf;
    padding: 2rem;
    border-radius: 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
    color: #005a32;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
    display: grid;
    grid-template-columns: 1fr 20rem;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
    font-weight: bold;
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
    border-radius: 1rem;
    border: transparent 5px solid;
    padding: 1rem 1rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20rem;
    align-self: center;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
    width: 100%;
    height: 9rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view {
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container {
    margin: 4rem 0rem 0rem;
    background: #f0f0f0;
    padding: 2rem;
    border-radius: 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .about-tag {
    color: darkgreen;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency {
    font-weight: bold;
    color: #d99201;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency span {
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency:hover span {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container hr {
    border: none;
    height: 2px;
    background-color: darkgreen;
    margin: 2rem 0rem 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .get-more-heading {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .get-more-heading::before {
    content: "";
    position: absolute;
    bottom: -0.8rem;
    left: 0;
    width: 5rem;
    height: 3px;
    background: #d99201;
    border-radius: 0.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .get-more-info {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin: 2.5rem 0rem 1.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .bolder-text-paragraph {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5rem;
    margin: 0rem 0rem 2.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 0rem 0rem 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box {
    background: #fff;
    border-radius: 1rem;
    padding: 0.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: #005a32 1px solid;
    border-radius: 1rem;
    padding: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .zaliv-digital-logo-wrapper {
    width: 8rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .zaliv-digital-logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .action-name {
    margin: 0.5rem 0rem 0.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .action-statement {
    text-align: center;
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.5rem;
    margin: 2.5rem 0rem 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol li {
    list-style: decimal;
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: normal;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol li::marker {
    font-weight: bold;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol li span {
    padding: 0rem;
    line-height: 1.25rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .view-catlog-btn {
    display: flex;
    width: -moz-max-content;
    width: max-content;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container {
    color: #fff;
    padding: 6vh 1rem 4vh;
    margin: 0rem;
    background: #efefef;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
    font-size: 4rem;
    line-height: 3.5rem;
    margin-top: 0rem;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords !important;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto !important;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 920px) {
  .abour-us-mother-wrapper-container {
    padding: 20vh 0rem 0vh;
  }
  .abour-us-mother-wrapper-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
    padding: 0rem 1rem 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    align-self: flex-end;
    margin-right: 8rem;
  }
  .abour-us-mother-wrapper-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 80%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .header-container .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .header-container .pricing-slogan {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 600;
    width: 60%;
    margin: 3rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote .company-name span {
    background-image: linear-gradient(to right, #1a3f22, #d99201);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .abour-us-mother-wrapper-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #d99201;
    padding: 5vh 1rem 8vh;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .label {
    font-size: 3rem;
    line-height: 3rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 7rem;
    margin-top: 0.5rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .members {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.1rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
    font-size: 1rem;
    line-height: 0.8rem;
    font-weight: 600;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: #d99201 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .abour-us-mother-wrapper-container .idea {
    color: #d99201;
    font-size: 1.8rem;
    line-height: 2.3rem;
    font-weight: 500;
    padding: 0rem 1rem 5vh;
  }
  .abour-us-mother-wrapper-container .idea .clive-web-solutions {
    font-family: "Times New Roman", Times, serif !important;
    font-style: italic;
  }
  .abour-us-mother-wrapper-container .idea .clive-web-solutions span {
    font-family: "Times New Roman", Times, serif !important;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper {
    background: #1a3f22;
    color: #fff;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
    padding: 6vh 1rem 5vh;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
    width: 25rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
    width: 25rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(-3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
    padding: 5vh 0rem 4vh;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
    width: -moz-max-content;
    width: max-content;
    justify-self: center;
    margin: 0rem 0rem 3rem;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    margin: 0rem 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
    font-size: 4rem;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #d87f2b;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
    color: #005a32;
    margin-right: -5px;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
    width: 4.3rem;
    height: 4.3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #005a32 1px solid;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
    width: 63%;
    height: 85%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    justify-self: flex-end;
    margin: 1.5rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
    content: " ";
    position: absolute;
    top: 0;
    right: 30%;
    transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-bottom: none;
    border-right: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
    border: none;
    height: 1px;
    background-color: darkgreen;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
    font-size: 4rem;
    font-weight: bolder;
    line-height: 4.3rem;
    text-align: center;
    width: 90%;
    justify-self: center;
    padding: 0rem 1rem 0.5rem;
    margin: 2rem 0rem 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
    font-size: 1.1rem;
    text-align: center;
    width: 50%;
    justify-self: center;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
    margin: 3rem 1rem 0rem;
    background: #cfcfcf;
    padding: 2rem;
    border-radius: 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
    color: #005a32;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
    display: grid;
    grid-template-columns: 1fr 20rem;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
    font-weight: bold;
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
    border-radius: 1rem;
    border: transparent 5px solid;
    padding: 1rem 1rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20rem;
    align-self: center;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
    width: 100%;
    height: 9rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container {
    color: #fff;
    padding: 6vh 1rem 4vh;
    margin: 0rem;
    background: #efefef;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 2fr;
    gap: 2rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
    font-size: 4rem;
    line-height: 3.5rem;
    margin-top: 0rem;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords !important;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto !important;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 900px) {
  .abour-us-mother-wrapper-container {
    padding: 20vh 0rem 0vh;
  }
  .abour-us-mother-wrapper-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
    padding: 0rem 1rem 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    align-self: flex-end;
    margin-right: 8rem;
  }
  .abour-us-mother-wrapper-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 80%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .header-container .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .header-container .pricing-slogan {
    font-size: 4rem;
    line-height: 4.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote {
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-weight: 600;
    width: 75%;
    margin: 3rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #d99201;
    padding: 5vh 1rem 8vh;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .label {
    font-size: 3rem;
    line-height: 3rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 7rem;
    margin-top: 0.5rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .members {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.1rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
    font-size: 1rem;
    line-height: 0.8rem;
    font-weight: 600;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: #d99201 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .abour-us-mother-wrapper-container .idea {
    color: #d99201;
    font-size: 1.8rem;
    line-height: 2.3rem;
    font-weight: 500;
    padding: 0rem 1rem 5vh;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper {
    background: #1a3f22;
    color: #fff;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
    padding: 6vh 1rem 5vh;
    display: flex;
    align-items: flex-start;
    justify-content: unset;
    gap: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
    width: 25rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
    width: 25rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(-3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
    padding: 4vh 0rem 4vh;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
    width: -moz-max-content;
    width: max-content;
    justify-self: center;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    margin: 0rem 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
    font-size: 4rem;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: 8px;
    display: flex;
    gap: 8px;
    align-items: center;
    color: #d87f2b;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
    color: #005a32;
    margin-right: -5px;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
    width: 4.3rem;
    height: 4.3rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #005a32 1px solid;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
    width: 63%;
    height: 85%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    justify-self: flex-end;
    margin: 1.5rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
    content: " ";
    position: absolute;
    top: 0;
    right: 30%;
    transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-bottom: none;
    border-right: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
    border: none;
    height: 1px;
    background-color: darkgreen;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
    font-size: 4rem;
    font-weight: bolder;
    line-height: 4.3rem;
    text-align: center;
    width: 100%;
    justify-self: center;
    padding: 0rem 1rem 0.5rem;
    margin: 1.5rem 0rem 1.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
    font-size: 1.1rem;
    text-align: center;
    width: 50%;
    justify-self: center;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
    margin: 3rem 1rem 0rem;
    background: #cfcfcf;
    padding: 2rem 2rem 9rem;
    border-radius: 2rem;
    position: relative;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
    color: #005a32;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
    font-weight: bold;
    color: #d87f2b;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
    position: absolute;
    bottom: 2rem;
    width: calc(100% - 4rem);
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
    border-radius: 1rem;
    border: transparent 5px solid;
    padding: 4rem 3rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 23rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
    width: 100%;
    height: 18rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container {
    color: #fff;
    padding: 6vh 1rem 4vh;
    margin: 0rem;
    background: #efefef;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
    font-size: 4rem;
    line-height: 4.3rem;
    margin-top: 0rem;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 500;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 600px) {
  .abour-us-mother-wrapper-container {
    padding: 20vh 0rem 0vh;
  }
  .abour-us-mother-wrapper-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
    padding: 0rem 1rem 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    align-self: center;
    margin-right: 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 60%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .header-container .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .header-container .pricing-slogan {
    font-size: 2rem;
    line-height: 2.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 600;
    width: 100%;
    margin: 5vh 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
    margin: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #d99201;
    padding: 5vh 1rem 8vh;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .label {
    font-size: 2rem;
    line-height: 2rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 7rem;
    margin-top: 0rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .members {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.1rem;
    display: none;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
    font-size: 1rem;
    line-height: 0.8rem;
    font-weight: 600;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: #d99201 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .abour-us-mother-wrapper-container .idea {
    color: #d99201;
    font-size: 1.3rem;
    line-height: 1.8rem;
    font-weight: 500;
    padding: 0rem 1rem 5vh;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper {
    background: #1a3f22;
    color: #fff;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
    padding: 6vh 1rem 5vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(-3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
    padding: 5vh 0rem 4vh;
    /*NEW SECTION FOR ABOUT ZALIV DIGITAL*/
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
    width: -moz-max-content;
    width: max-content;
    justify-self: center;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
    font-size: 2rem;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: 6px;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #d87f2b;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
    color: #005a32;
    margin-right: -5px;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #005a32 1px solid;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
    width: 63%;
    height: 85%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    justify-self: flex-end;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
    content: " ";
    position: absolute;
    top: 0;
    right: 30%;
    transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-bottom: none;
    border-right: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
    border: none;
    height: 1px;
    background-color: darkgreen;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 2.3rem;
    text-align: center;
    width: 100%;
    justify-self: center;
    padding: 0rem 1rem 0.5rem;
    margin: 1.5rem 0rem 0.8rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
    font-size: 1.1rem;
    text-align: center;
    width: 80%;
    justify-self: center;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
    margin: 2.5rem 1rem 0rem;
    background: #cfcfcf;
    padding: 2rem 2rem 9rem;
    border-radius: 2rem;
    position: relative;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
    color: #005a32;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
    font-size: 1.2rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
    font-weight: bold;
    color: #d87f2b;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
    position: absolute;
    bottom: 2rem;
    width: calc(100% - 4rem);
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
    border-radius: 1rem;
    border: transparent 5px solid;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 15rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
    width: 100%;
    height: 10rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view {
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container {
    margin: 3rem 0rem 0rem;
    background: #f0f0f0;
    padding: 2rem 1rem;
    border-radius: 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .about-tag {
    color: darkgreen;
    margin: 0rem 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency {
    font-weight: bold;
    color: #d99201;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency span {
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .who-is-zaliv-digital .muzala-agency:hover span {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container hr {
    border: none;
    height: 2px;
    background-color: darkgreen;
    margin: 2rem 0rem 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .get-more-heading {
    font-size: 1.8rem;
    line-height: 2.1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .get-more-heading::before {
    content: "";
    position: absolute;
    bottom: -0.9rem;
    left: 0;
    width: 5rem;
    height: 3px;
    background: #d99201;
    border-radius: 0.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .get-more-info {
    font-size: 1.1rem;
    line-height: 1.4rem;
    margin: 2.5rem 0rem 1.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .bolder-text-paragraph {
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.4rem;
    margin: 0rem 0rem 2.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 0rem 0rem 2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box {
    background: #fff;
    border-radius: 1rem;
    padding: 0.5rem;
    width: 100%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: #005a32 1px solid;
    border-radius: 1rem;
    padding: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .zaliv-digital-logo-wrapper {
    width: 8rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .zaliv-digital-logo-wrapper img {
    width: 100%;
    height: 100%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .action-name {
    margin: 0.5rem 0rem 0.5rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .three-elements-wrapper .single-service-box .wrapper .action-statement {
    text-align: center;
    font-size: 1rem;
    line-height: 1.3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 1.5rem;
    margin: 2.5rem 0rem 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol li {
    list-style: decimal;
    font-size: 1rem;
    line-height: 1.4rem;
    font-weight: normal;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol li::marker {
    font-weight: bold;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container ol li span {
    padding: 0rem;
    line-height: 1.25rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .view-catlog-btn {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .add-padding-on-mobile-view .about-zaliv-digital-mother-container .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container {
    color: #fff;
    padding: 6vh 1rem 4vh;
    margin: 0rem;
    background: #efefef;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
    font-size: 2rem;
    line-height: 2.3rem;
    margin-top: 0rem;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 500;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 500px) {
  .abour-us-mother-wrapper-container {
    padding: 20vh 0rem 0vh;
  }
  .abour-us-mother-wrapper-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
    padding: 0rem 1rem 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    align-self: center;
    margin-right: 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 80%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .header-container .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .header-container .pricing-slogan {
    font-size: 2rem;
    line-height: 2.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote {
    font-size: 1.3rem;
    line-height: 1.5rem;
    font-weight: 600;
    width: 100%;
    margin: 2.5rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
    margin: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #d99201;
    padding: 5vh 1rem 8vh;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .label {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 7rem;
    margin-top: 0rem;
    display: none;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .members {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.1rem;
    display: none;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
    font-size: 1rem;
    line-height: 0.8rem;
    font-weight: 600;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: #d99201 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .abour-us-mother-wrapper-container .idea {
    color: #d99201;
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 500;
    padding: 0rem 1rem 5vh;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper {
    background: #1a3f22;
    color: #fff;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
    padding: 6vh 1rem 5vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    gap: 4rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(-3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
    padding: 5vh 0rem 4vh;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
    width: -moz-max-content;
    width: max-content;
    justify-self: center;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
    font-size: 2rem;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: 6px;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #d87f2b;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
    color: #005a32;
    margin-right: -5px;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #005a32 1px solid;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
    width: 63%;
    height: 85%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    justify-self: flex-end;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
    content: " ";
    position: absolute;
    top: 0;
    right: 30%;
    transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-bottom: none;
    border-right: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
    border: none;
    height: 1px;
    background-color: darkgreen;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 2.3rem;
    text-align: center;
    width: 100%;
    justify-self: unset;
    padding: 0rem 1rem 0.5rem;
    margin: 1.5rem 0rem 0.8rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    justify-self: center;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
    margin: 2.5rem 1rem 0rem;
    background: #cfcfcf;
    padding: 1.5rem 1rem 8rem;
    border-radius: 2rem;
    position: relative;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
    color: #005a32;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
    font-weight: bold;
    color: #d87f2b;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
    position: absolute;
    bottom: 2rem;
    width: calc(100% - 2rem);
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
    border-radius: 1rem;
    border: transparent 5px solid;
    padding: 3rem 1rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 14rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
    width: 100%;
    height: 9rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container {
    color: #fff;
    padding: 6vh 1rem 4vh;
    margin: 0rem;
    background: #efefef;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-top: 0rem;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 500;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
    padding-top: 5px;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 385px) {
  .abour-us-mother-wrapper-container {
    padding: 20vh 0rem 0vh;
  }
  .abour-us-mother-wrapper-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
    padding: 0rem 1rem 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: 100%;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    align-self: center;
    text-align: center;
    margin-right: 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 80%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .header-container .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .header-container .pricing-slogan {
    font-size: 2rem;
    line-height: 2.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote {
    font-size: 1.2rem;
    line-height: 1.4rem;
    font-weight: 600;
    width: 100%;
    margin: 5vh 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
    margin: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #d99201;
    padding: 5vh 1rem 8vh;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .label {
    font-size: 2.5rem;
    line-height: 2.5rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 7rem;
    margin-top: 0rem;
    display: none;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .members {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.1rem;
    display: none;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
    font-size: 1rem;
    line-height: 0.8rem;
    font-weight: 600;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: #d99201 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .abour-us-mother-wrapper-container .idea {
    color: #d99201;
    font-size: 1.3rem;
    line-height: 1.7rem;
    font-weight: 500;
    padding: 0rem 1rem 5vh;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper {
    background: #1a3f22;
    color: #fff;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
    padding: 6vh 1rem 5vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    gap: 4rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(-3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
    padding: 5vh 0rem 4vh;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
    width: -moz-max-content;
    width: max-content;
    justify-self: center;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
    font-size: 2rem;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: 6px;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #d87f2b;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
    color: #005a32;
    margin-right: -5px;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #005a32 1px solid;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
    width: 63%;
    height: 85%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    justify-self: flex-end;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
    content: " ";
    position: absolute;
    top: 0;
    right: 30%;
    transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-bottom: none;
    border-right: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
    border: none;
    height: 1px;
    background-color: darkgreen;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 2.3rem;
    text-align: center;
    width: 100%;
    justify-self: unset;
    padding: 0rem 1rem 0.5rem;
    margin: 1.5rem 0rem 0.8rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    justify-self: center;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
    margin: 2.5rem 1rem 0rem;
    background: #cfcfcf;
    padding: 1.5rem 1rem 8rem;
    border-radius: 2rem;
    position: relative;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
    color: #005a32;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
    font-weight: bold;
    color: #d87f2b;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
    position: absolute;
    bottom: 2rem;
    width: calc(100% - 2rem);
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
    border-radius: 1rem;
    border: transparent 5px solid;
    padding: 3rem 1rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 13rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
    width: 100%;
    height: 8rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container {
    color: #fff;
    padding: 6vh 1rem 4vh;
    margin: 0rem;
    background: #efefef;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-top: 0rem;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 500;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
    padding-top: 5px;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
@media (max-width: 350px) {
  .abour-us-mother-wrapper-container {
    padding: 20vh 0rem 0vh;
  }
  .abour-us-mother-wrapper-container .header-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 6vh;
    padding: 0rem 1rem 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: 100%;
    text-align: center;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    align-self: center;
    margin-right: 0rem;
  }
  .abour-us-mother-wrapper-container .header-container .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .header-container .label h4 {
    font-size: 1rem;
    line-height: 1.2rem;
  }
  .abour-us-mother-wrapper-container .header-container .pricing-slogan {
    font-size: 2rem;
    line-height: 2.2rem;
    margin: 1rem 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container .header-container .quote {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 600;
    width: 100%;
    margin: 5vh 0rem 0rem;
    text-align: center;
  }
  .abour-us-mother-wrapper-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
    margin: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: #d99201;
    padding: 5vh 1rem 8vh;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .label {
    font-size: 2rem;
    line-height: 2rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .the-best {
    font-size: 0.8rem;
    line-height: 1.2rem;
    width: 7rem;
    margin-top: 0rem;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .members {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0.1rem;
    display: none;
  }
  .abour-us-mother-wrapper-container .our-team-text-wrapper .current-year {
    font-size: 1rem;
    line-height: 0.8rem;
    font-weight: 600;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 50%;
    border: #d99201 solid 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  .abour-us-mother-wrapper-container .idea {
    color: #d99201;
    font-size: 1.3rem;
    line-height: 1.7rem;
    font-weight: 500;
    padding: 0rem 1rem 5vh;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper {
    background: #1a3f22;
    color: #fff;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder {
    padding: 6vh 1rem 5vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    gap: 4rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .clive .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley {
    width: 100%;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .photo {
    height: 20rem;
    width: 85%;
    border: #d99201 solid 1rem;
    border-radius: 2px;
    justify-self: center;
    transform: rotate(-3deg);
    box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.3);
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .full-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .abour-us-mother-wrapper-container .founders-portfolios-wrapper .profiles-holder .ashley .about-him .mzala {
    color: #d99201;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper {
    padding: 5vh 0rem 4vh;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper {
    width: -moz-max-content;
    width: max-content;
    justify-self: center;
    margin: 0rem 0rem 2rem;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label::before {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 40%;
    transform: translateX(-50%) rotate(45deg) translateY(0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-top: none;
    border-left: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name {
    font-size: 2rem;
    font-weight: bold;
    line-height: 4rem;
    letter-spacing: 6px;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #d87f2b;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name span {
    color: #005a32;
    margin-right: -5px;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: #005a32 1px solid;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .company-name .logo-badge img {
    width: 63%;
    height: 85%;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label {
    background: #d99201;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    width: -moz-max-content;
    width: max-content;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    position: relative;
    justify-self: flex-end;
    margin: 0rem 0rem 0rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label::before {
    content: " ";
    position: absolute;
    top: 0;
    right: 30%;
    transform: translateX(-50%) rotate(45deg) translateY(-0.6rem);
    width: 0.8rem;
    height: 0.8rem;
    background: #d99201;
    border: rgba(194, 194, 194, 0.4431372549) solid 1px;
    border-bottom: none;
    border-right: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-name-and-tags-wrapper .bottom-label h4 {
    font-size: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper hr {
    border: none;
    height: 1px;
    background-color: darkgreen;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-slogan {
    font-size: 2rem;
    font-weight: bolder;
    line-height: 2.3rem;
    text-align: center;
    width: 100%;
    justify-self: unset;
    padding: 0rem 1rem 0.5rem;
    margin: 1.5rem 0rem 0.8rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .zaliv-description {
    font-size: 1.1rem;
    text-align: center;
    width: 100%;
    justify-self: center;
    padding: 0rem 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container {
    margin: 2.5rem 1rem 0rem;
    background: #cfcfcf;
    padding: 1.5rem 1rem 8rem;
    border-radius: 2rem;
    position: relative;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .about {
    color: #005a32;
    margin: 0rem 0rem 1.2rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about p {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency {
    font-weight: bold;
    color: #d87f2b;
    text-decoration: underline;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .muzala-agency:hover {
    text-decoration: none;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn {
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 2rem;
    color: #fff;
    background: #1a3f22;
    border: #1a3f22 1px solid;
    transition: background 0.3s ease-in-out;
    margin: 1.5rem 0rem 0rem;
    position: absolute;
    bottom: 2rem;
    width: calc(100% - 2rem);
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .information-about .view-catlog-btn:hover {
    background: transparent;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper {
    border-radius: 1rem;
    border: transparent 5px solid;
    padding: 3rem 1rem;
    background: linear-gradient(#fff, #fff) padding-box, linear-gradient(92.7deg, #005a32, #d87f2b) border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 12rem;
  }
  .abour-us-mother-wrapper-container .zaliv-mother-container-wrapper .about-zaliv-container .grid-section .logo-wrapper img {
    width: 100%;
    height: 7rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container {
    color: #fff;
    padding: 6vh 1rem 4vh;
    margin: 0rem;
    background: #efefef;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: flex-start;
    padding-bottom: 1rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper h2 {
    font-size: 2rem;
    line-height: 2.4rem;
    margin-top: 0rem;
    color: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq {
    cursor: pointer;
    padding: 1rem;
    border-radius: 0.5rem;
    background: #1a3f22;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question h3 {
    font-size: 1.2rem;
    line-height: 1.7rem;
    font-weight: 500;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .question i {
    transition: transform 0.3s ease-in-out;
    padding-top: 5px;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer {
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    interpolate-size: allow-keywords;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq .answer p {
    padding-top: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: lighter;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active .answer {
    height: auto;
  }
  .abour-us-mother-wrapper-container .faq-mother-container .mother-wrapper .faq-wrapper .faq.active i {
    transform: rotate(45deg);
  }
}
.contact-us-mother-container {
  padding: 20vh 0rem 0rem;
}
.contact-us-mother-container .statement-cover {
  margin-bottom: 7vh;
}
.contact-us-mother-container .statement-cover .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5vh;
}
.contact-us-mother-container .statement-cover .wrapper .website-sorted {
  font-size: 4rem;
  line-height: 4.2rem;
}
.contact-us-mother-container .statement-cover .wrapper .paragraph-text {
  font-size: 1.1rem;
  line-height: 1.4rem;
  font-weight: 500;
  width: 70%;
}
.contact-us-mother-container .statement-cover .wrapper .paragraph-text span {
  display: flex;
  gap: 0rem;
}
.contact-us-mother-container .statement-cover .wrapper .whatsapp-link {
  padding: 0.7rem 1.5rem;
  color: #000;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  font-weight: 500;
  border-radius: 2rem;
  background: #d99201;
  transition: border-radius 0.3s ease-in-out;
}
.contact-us-mother-container .statement-cover .wrapper .whatsapp-link:hover {
  color: #fff;
  border-radius: 5px;
}
.contact-us-mother-container hr {
  border: none;
  height: 1px;
  background-color: #d99201;
}
.contact-us-mother-container .texts-cover {
  padding: 10vh 0rem;
  display: flex;
  flex-direction: column;
  gap: 5vh;
}
.contact-us-mother-container .texts-cover .normal-color {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
  text-align: center;
}
.contact-us-mother-container .texts-cover .golden-color-text {
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: 700;
  text-align: center;
  color: #d99201;
}
.contact-us-mother-container .contact-us-methods-cover {
  padding: 8vh 0rem 5vh;
  background: #1a3f22;
  color: #fff;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper h1 {
  font-size: 4rem;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper p {
  font-size: 1.1rem;
  line-height: 1.1rem;
  margin-top: 3vh;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 8vh;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a {
  padding: 1rem 2rem;
  background: #d99201;
  border-radius: 0.5rem;
  color: #000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: transform 0.3s ease-in-out;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a i {
  font-size: 1.5rem;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a:hover {
  box-shadow: none;
  transform: translate(3px, 3px);
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 6vh 0rem 2rem;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a {
  width: 3rem;
  height: 3rem;
  border: 1px #d99201 solid;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  transition: transform 0.3s ease-in-out;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a i {
  color: #d99201;
  font-size: 1.8rem;
}
.contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a:hover {
  box-shadow: none;
  transform: translate(3px, 3px);
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .contact-us-mother-container {
    padding: 20vh 0rem 0rem;
  }
  .contact-us-mother-container .statement-cover {
    margin-bottom: 3rem;
    padding: 0rem 1rem;
  }
  .contact-us-mother-container .statement-cover .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .contact-us-mother-container .statement-cover .wrapper .website-sorted {
    font-size: 4rem;
    line-height: 4rem;
    text-align: center;
  }
  .contact-us-mother-container .statement-cover .wrapper .paragraph-text {
    font-size: 1.1rem;
    line-height: 1.4rem;
    font-weight: 500;
    width: 80%;
    text-align: center;
  }
  .contact-us-mother-container .statement-cover .wrapper .whatsapp-link {
    padding: 0.7rem 1.5rem;
    color: #000;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    font-weight: 500;
    border-radius: 2rem;
    background: #d99201;
    transition: border-radius 0.3s ease-in-out;
  }
  .contact-us-mother-container .statement-cover .wrapper .whatsapp-link:hover {
    color: #fff;
    border-radius: 5px;
  }
  .contact-us-mother-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
  }
  .contact-us-mother-container .texts-cover {
    padding: 10vh 0rem;
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }
  .contact-us-mother-container .texts-cover .normal-color {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
    text-align: center;
  }
  .contact-us-mother-container .texts-cover .golden-color-text {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
    text-align: center;
    color: #d99201;
  }
  .contact-us-mother-container .contact-us-methods-cover {
    padding: 5vh 0rem 3vh;
    background: #1a3f22;
    color: #fff;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper p {
    font-size: 1.1rem;
    line-height: 1.1rem;
    margin-top: 3vh;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0rem 1rem;
    gap: 2rem;
    margin-top: 5vh;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a {
    padding: 1rem 2rem;
    background: #d99201;
    border-radius: 0.5rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease-in-out;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a i {
    font-size: 1.5rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 4vh 0rem 2rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a {
    width: 3rem;
    height: 3rem;
    border: 1px #d99201 solid;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease-in-out;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a i {
    color: #d99201;
    font-size: 1.8rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
  }
}
@media (max-width: 900px) {
  .contact-us-mother-container {
    padding: 20vh 0rem 0rem;
  }
  .contact-us-mother-container .statement-cover {
    margin-bottom: 5vh;
    padding: 0rem 1rem;
  }
  .contact-us-mother-container .statement-cover .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .contact-us-mother-container .statement-cover .wrapper .website-sorted {
    font-size: 4rem;
    line-height: 4.2rem;
    text-align: center;
  }
  .contact-us-mother-container .statement-cover .wrapper .paragraph-text {
    font-size: 1.1rem;
    line-height: 1.4rem;
    font-weight: 500;
    width: 100%;
    text-indent: 0px;
    text-align: center;
  }
  .contact-us-mother-container .statement-cover .wrapper .whatsapp-link {
    padding: 0.7rem 1.5rem;
    color: #000;
    display: flex;
    width: -moz-max-content;
    width: max-content;
    font-weight: 500;
    border-radius: 2rem;
    background: #d99201;
    transition: border-radius 0.3s ease-in-out;
  }
  .contact-us-mother-container .statement-cover .wrapper .whatsapp-link:hover {
    color: #fff;
    border-radius: 5px;
  }
  .contact-us-mother-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
  }
  .contact-us-mother-container .texts-cover {
    padding: 10vh 0rem;
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }
  .contact-us-mother-container .texts-cover .normal-color {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
    text-align: center;
  }
  .contact-us-mother-container .texts-cover .golden-color-text {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
    text-align: center;
    color: #d99201;
  }
  .contact-us-mother-container .contact-us-methods-cover {
    padding: 5vh 0rem 3vh;
    background: #1a3f22;
    color: #fff;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper p {
    font-size: 1.1rem;
    line-height: 1.1rem;
    margin-top: 2rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 1rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a {
    padding: 1rem 2rem;
    background: #d99201;
    border-radius: 0.5rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease-in-out;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a i {
    font-size: 1.5rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 4vh 0rem 2rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a {
    width: 3rem;
    height: 3rem;
    border: 1px #d99201 solid;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease-in-out;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a i {
    color: #d99201;
    font-size: 1.8rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
  }
}
@media (max-width: 600px) {
  .contact-us-mother-container {
    padding: 20vh 0rem 0rem;
  }
  .contact-us-mother-container .statement-cover {
    margin-bottom: 5vh;
    padding: 0rem 1rem;
  }
  .contact-us-mother-container .statement-cover .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .contact-us-mother-container .statement-cover .wrapper .website-sorted {
    font-size: 2rem;
    line-height: 2.2rem;
    text-align: center;
  }
  .contact-us-mother-container .statement-cover .wrapper .paragraph-text {
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 500;
    width: 100%;
    text-indent: 0px;
    text-align: center;
  }
  .contact-us-mother-container .statement-cover .wrapper .whatsapp-link {
    padding: 0.7rem 1.5rem;
    color: #000;
    display: flex;
    width: 100%;
    justify-content: center;
    font-weight: 500;
    border-radius: 2rem;
    background: #d99201;
    transition: border-radius 0.3s ease-in-out;
  }
  .contact-us-mother-container .statement-cover .wrapper .whatsapp-link:hover {
    color: #fff;
    border-radius: 5px;
  }
  .contact-us-mother-container hr {
    border: none;
    height: 1px;
    background-color: #d99201;
  }
  .contact-us-mother-container .texts-cover {
    padding: 10vh 0rem;
    display: flex;
    flex-direction: column;
    gap: 5vh;
  }
  .contact-us-mother-container .texts-cover .normal-color {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
    text-align: center;
  }
  .contact-us-mother-container .texts-cover .golden-color-text {
    font-size: 1.8rem;
    line-height: 2rem;
    font-weight: 700;
    text-align: center;
    color: #d99201;
  }
  .contact-us-mother-container .contact-us-methods-cover {
    padding: 5vh 1rem 3vh;
    background: #1a3f22;
    color: #fff;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper h1 {
    font-size: 2rem;
    line-height: 2rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper p {
    font-size: 1.1rem;
    line-height: 1.4rem;
    margin-top: 3vh;
    text-align: center;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 5vh;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a {
    padding: 1rem 2rem;
    background: #d99201;
    border-radius: 0.5rem;
    color: #000;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.5rem;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease-in-out;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a i {
    font-size: 1.5rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .direct-contacts a:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 4vh 0rem 2rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a {
    width: 3rem;
    height: 3rem;
    border: 1px #d99201 solid;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: transform 0.3s ease-in-out;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a i {
    color: #d99201;
    font-size: 1.8rem;
  }
  .contact-us-mother-container .contact-us-methods-cover .contact-details-wrapper .social-links-wrapper a:hover {
    box-shadow: none;
    transform: translate(3px, 3px);
  }
}
.mother-container-zaliv-digital .hearder-with-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0rem;
}
.mother-container-zaliv-digital .hearder-with-logo .logo-wrapper {
  width: 8rem;
}
.mother-container-zaliv-digital .hearder-with-logo .logo-wrapper img {
  width: 100%;
}
.mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions {
  padding: 0.8rem 1.5rem;
  border: 2px solid darkgreen;
  border-radius: 2rem;
  background: darkgreen;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.1rem;
  transition: background 0.3s ease-in-out;
}
.mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions i {
  margin-right: 0.5rem;
  transition: transform 0.5s ease-in-out;
}
.mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover {
  background: transparent;
  color: darkgreen;
}
.mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover i {
  transform: translateX(-0.5rem);
}
.mother-container-zaliv-digital .banner-container {
  background-image: url(../../images/banner-zaliv-digital.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 1rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  margin: 1rem 0rem 0rem;
}
.mother-container-zaliv-digital .banner-container::before {
  content: "";
  position: absolute;
  top: 0rem;
  left: 0rem;
  background-color: rgba(0, 0, 0, 0.7450980392);
  width: 100%;
  height: 100%;
}
.mother-container-zaliv-digital .banner-container h1 {
  font-size: 4rem;
  line-height: 4rem;
  z-index: 1;
  position: relative;
  color: #fff;
}
.mother-container-zaliv-digital .banner-container .digital {
  font-weight: 800;
}
.mother-container-zaliv-digital .banner-container .package {
  font-weight: 300;
  width: 30rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper {
  display: grid;
  grid-template-columns: 1fr 15rem;
  padding: 3rem 0rem 5rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package {
  border-radius: 1rem;
  overflow: hidden;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .package-name {
  background: #f2f2f2;
  padding: 1.2rem 2rem;
  font-weight: 800;
  font-size: 1.5rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package hr {
  border: none;
  height: 3px;
  background-color: transparent;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper {
  background: linear-gradient(to bottom, #f2f2f2, transparent);
  padding: 1rem 2rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money {
  color: darkgreen;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .currency {
  font-size: 2.5rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .amount {
  font-size: 4rem;
  font-weight: 500;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .monthly {
  font-size: 1rem;
  padding-top: 0.5rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li {
  list-style: disc;
  font-weight: normal;
  font-size: 1rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li i {
  font-size: 0.8rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul .note {
  list-style: none;
  margin-top: 1rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .contacts {
  align-self: center;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: -3rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper button {
  padding: 0.4rem 1.2rem 0.5rem;
  background: darkgreen;
  color: #fff;
  font-size: 1rem;
  border: none;
  border-radius: 2rem;
  width: 100%;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a {
  color: #000;
  padding: 0.6rem 0rem;
  display: flex;
  justify-content: end;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:hover {
  color: darkgreen;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:nth-child(2),
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:first-child {
  border-bottom: #c2c2c2 2px solid;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child {
  align-items: center;
  gap: 0.5rem;
}
.mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child i {
  font-size: larger;
}

/* MEDIA SCREEN RESPONSIVENESS */
@media (max-width: 1100px) {
  .mother-container-zaliv-digital {
    padding: 0rem 1rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper {
    width: 10rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper img {
    width: 100%;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions {
    padding: 0.8rem 1.5rem;
    border: 2px solid darkgreen;
    border-radius: 2rem;
    background: darkgreen;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.1rem;
    transition: background 0.3s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions i {
    margin-right: 0.5rem;
    transition: transform 0.5s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover {
    background: transparent;
    color: darkgreen;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover i {
    transform: translateX(-0.5rem);
  }
  .mother-container-zaliv-digital .banner-container {
    background-image: url(../../images/banner-zaliv-digital.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    margin: 1rem 0rem 0rem;
  }
  .mother-container-zaliv-digital .banner-container::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0rem;
    background-color: rgba(0, 0, 0, 0.7450980392);
    width: 100%;
    height: 100%;
  }
  .mother-container-zaliv-digital .banner-container h1 {
    font-size: 4rem;
    line-height: 4rem;
    z-index: 1;
    position: relative;
    color: #fff;
  }
  .mother-container-zaliv-digital .banner-container .digital {
    font-weight: 800;
  }
  .mother-container-zaliv-digital .banner-container .package {
    font-weight: 300;
    width: 30rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 15rem;
    padding: 3rem 0rem 5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package {
    border-radius: 1rem;
    overflow: hidden;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .package-name {
    background: #f2f2f2;
    padding: 1.2rem 2rem;
    font-weight: 800;
    font-size: 1.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package hr {
    border: none;
    height: 3px;
    background-color: transparent;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper {
    background: linear-gradient(to bottom, #f2f2f2, transparent);
    padding: 1rem 2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money {
    color: darkgreen;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .currency {
    font-size: 2.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .amount {
    font-size: 4rem;
    font-weight: 500;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .monthly {
    font-size: 1rem;
    padding-top: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li {
    list-style: disc;
    font-weight: normal;
    font-size: 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li i {
    font-size: 0.8rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .contacts {
    align-self: center;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper button {
    padding: 0.4rem 1.2rem 0.5rem;
    background: darkgreen;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 2rem;
    width: 100%;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a {
    color: #000;
    padding: 0.6rem 0rem;
    display: flex;
    justify-content: end;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:hover {
    color: darkgreen;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:nth-child(2),
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:first-child {
    border-bottom: #c2c2c2 2px solid;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child {
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child i {
    font-size: larger;
  }
}
@media (max-width: 950px) {
  .mother-container-zaliv-digital {
    padding: 0rem 1rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper {
    width: 10rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper img {
    width: 100%;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions {
    padding: 0.8rem 1.5rem;
    border: 2px solid darkgreen;
    border-radius: 2rem;
    background: darkgreen;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.1rem;
    transition: background 0.3s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions i {
    margin-right: 0.5rem;
    transition: transform 0.5s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover {
    background: transparent;
    color: darkgreen;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover i {
    transform: translateX(-0.5rem);
  }
  .mother-container-zaliv-digital .banner-container {
    background-image: url(../../images/banner-zaliv-digital.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    margin: 1rem 0rem 0rem;
  }
  .mother-container-zaliv-digital .banner-container::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0rem;
    background-color: rgba(0, 0, 0, 0.7450980392);
    width: 100%;
    height: 100%;
  }
  .mother-container-zaliv-digital .banner-container h1 {
    font-size: 4rem;
    line-height: 4rem;
    z-index: 1;
    position: relative;
    color: #fff;
  }
  .mother-container-zaliv-digital .banner-container .digital {
    font-weight: 800;
  }
  .mother-container-zaliv-digital .banner-container .package {
    font-weight: 300;
    width: 30rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    padding: 3rem 0rem 5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package {
    border-radius: 1rem;
    overflow: hidden;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .package-name {
    background: #f2f2f2;
    padding: 1.2rem 2rem;
    font-weight: 800;
    font-size: 1.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package hr {
    border: none;
    height: 3px;
    background-color: transparent;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper {
    background: linear-gradient(to bottom, #f2f2f2, transparent);
    padding: 1rem 2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money {
    color: darkgreen;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .currency {
    font-size: 2.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .amount {
    font-size: 4rem;
    font-weight: 500;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .monthly {
    font-size: 1rem;
    padding-top: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li {
    list-style: disc;
    font-weight: normal;
    font-size: 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li i {
    font-size: 0.8rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin: 2rem 0rem 0rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .contacts {
    align-self: center;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper button {
    padding: 0.4rem 1.2rem 0.5rem;
    background: darkgreen;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 2rem;
    width: 100%;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a {
    color: #000;
    padding: 0.6rem 0rem;
    display: flex;
    justify-content: end;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:hover {
    color: darkgreen;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:nth-child(2),
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:first-child {
    border-bottom: #c2c2c2 2px solid;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child {
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child i {
    font-size: larger;
  }
}
@media (max-width: 600px) {
  .mother-container-zaliv-digital {
    padding: 0rem 1rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper {
    width: 6rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper img {
    width: 100%;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions {
    padding: 0.4rem 1rem;
    border: 2px solid darkgreen;
    border-radius: 2rem;
    background: darkgreen;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.1rem;
    transition: background 0.3s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions i {
    margin-right: 0.5rem;
    transition: transform 0.5s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover {
    background: transparent;
    color: darkgreen;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover i {
    transform: translateX(-0.5rem);
  }
  .mother-container-zaliv-digital .banner-container {
    background-image: url(../../images/banner-zaliv-digital.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    margin: 1rem 0rem 0rem;
  }
  .mother-container-zaliv-digital .banner-container::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0rem;
    background-color: rgba(0, 0, 0, 0.7450980392);
    width: 100%;
    height: 100%;
  }
  .mother-container-zaliv-digital .banner-container h1 {
    font-size: 3rem;
    line-height: 3rem;
    z-index: 1;
    position: relative;
    color: #fff;
  }
  .mother-container-zaliv-digital .banner-container .digital {
    font-weight: 800;
  }
  .mother-container-zaliv-digital .banner-container .package {
    font-weight: 300;
    width: 30rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    padding: 3rem 0rem 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package {
    border-radius: 1rem;
    overflow: hidden;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .package-name {
    background: #f2f2f2;
    padding: 1.2rem 2rem;
    font-weight: 800;
    font-size: 1.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package hr {
    border: none;
    height: 3px;
    background-color: transparent;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper {
    background: linear-gradient(to bottom, #f2f2f2, transparent);
    padding: 1rem 2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money {
    color: darkgreen;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .currency {
    font-size: 2.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .amount {
    font-size: 4rem;
    font-weight: 500;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .monthly {
    font-size: 1rem;
    padding-top: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li {
    list-style: disc;
    font-weight: normal;
    font-size: 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li i {
    font-size: 0.8rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin: 4rem 0rem 0rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .contacts {
    align-self: center;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper button {
    padding: 0.4rem 1.2rem 0.5rem;
    background: darkgreen;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 2rem;
    width: 100%;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a {
    color: #000;
    padding: 0.6rem 0rem;
    display: flex;
    justify-content: end;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:hover {
    color: darkgreen;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:nth-child(2),
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:first-child {
    border-bottom: #c2c2c2 2px solid;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child {
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child i {
    font-size: larger;
  }
}
@media (max-width: 500px) {
  .mother-container-zaliv-digital {
    padding: 0rem 1rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper {
    width: 6rem;
  }
  .mother-container-zaliv-digital .hearder-with-logo .logo-wrapper img {
    width: 100%;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions {
    padding: 0.4rem 1rem;
    border: 2px solid darkgreen;
    border-radius: 2rem;
    background: darkgreen;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.1rem;
    transition: background 0.3s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions i {
    margin-right: 0.5rem;
    transition: transform 0.5s ease-in-out;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover {
    background: transparent;
    color: darkgreen;
  }
  .mother-container-zaliv-digital .hearder-with-logo .clive-web-solutions:hover i {
    transform: translateX(-0.5rem);
  }
  .mother-container-zaliv-digital .banner-container {
    background-image: url(../../images/banner-zaliv-digital.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    margin: 1rem 0rem 0rem;
  }
  .mother-container-zaliv-digital .banner-container::before {
    content: "";
    position: absolute;
    top: 0rem;
    left: 0rem;
    background-color: rgba(0, 0, 0, 0.7450980392);
    width: 100%;
    height: 100%;
  }
  .mother-container-zaliv-digital .banner-container h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    z-index: 1;
    position: relative;
    color: #fff;
  }
  .mother-container-zaliv-digital .banner-container .digital {
    font-weight: 800;
  }
  .mother-container-zaliv-digital .banner-container .package {
    font-weight: 300;
    width: 100%;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    padding: 3rem 0rem 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package {
    border-radius: 1rem;
    overflow: hidden;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .package-name {
    background: #f2f2f2;
    padding: 1.2rem 2rem;
    font-weight: 800;
    font-size: 1.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package hr {
    border: none;
    height: 3px;
    background-color: transparent;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper {
    background: linear-gradient(to bottom, #f2f2f2, transparent);
    padding: 1rem 2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money {
    color: darkgreen;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .currency {
    font-size: 2.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .amount {
    font-size: 4rem;
    font-weight: 500;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper .price-money .monthly {
    font-size: 1rem;
    padding-top: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li {
    list-style: disc;
    font-weight: normal;
    font-size: 1rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .packages-wrapper .single-package .price-and-list-wrapper ul li i {
    font-size: 0.8rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: end;
    margin: 4rem 0rem 0rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .contacts {
    align-self: center;
    width: -moz-max-content;
    width: max-content;
    margin-bottom: 0rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper button {
    padding: 0.4rem 1.2rem 0.5rem;
    background: darkgreen;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 2rem;
    width: 100%;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a {
    color: #000;
    padding: 0.6rem 0rem;
    display: flex;
    justify-content: end;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:hover {
    color: darkgreen;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:nth-child(2),
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:first-child {
    border-bottom: #c2c2c2 2px solid;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child {
    align-items: center;
    gap: 0.5rem;
  }
  .mother-container-zaliv-digital .package-plus-contacts-wrapper .contact-details-wrapper .links-wrapper a:last-child i {
    font-size: larger;
  }
}
[text-split] {
  opacity: 0;
}

.word {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  transform-origin: bottom;
}

.page-title-loader-mother-container {
  position: fixed;
  z-index: 200;
  top: 0rem;
  left: 0rem;
  width: 100vw;
  height: 100vh;
  background: #1a3f22;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-title-loader-mother-container .page-title {
  color: #fff;
  font-weight: bold;
  font-size: 5rem;
}

/* ANIMATIONS*/
.anim {
  transform: translateY(0%);
  animation: moveup 0.7s linear forwards;
}

@keyframes moveup {
  100% {
    transform: translateY(-100%);
  }
}
/*Media SCREEENS*/
@media (max-width: 1100px) {
  .page-title-loader-mother-container .page-title {
    font-weight: bold;
    font-size: 4rem;
    line-height: 4.3rem;
  }
}
@media (max-width: 900px) {
  .page-title-loader-mother-container .page-title {
    font-weight: bold;
    font-size: 3rem;
    line-height: 3.3rem;
  }
}
@media (max-width: 600px) {
  .page-title-loader-mother-container .page-title {
    font-weight: bold;
    font-size: 2rem;
    line-height: 2.3rem;
  }
}/*# sourceMappingURL=style.css.map */