:root {
  --c-theme: linear-gradient(91.21deg, #05D4FC 0%, #BE0DEF 66.52%, #F202D3 100.26%);
  --c-theme-hover: linear-gradient(91.21deg, #22aeca 0%, #b628dd 66.52%, #c533b2 100.26%);
  --c-theme-2: linear-gradient(to bottom, #05D4FC 0%, #BE0DEF 66.52%, #F202D3 100.26%);
  --c-theme-3: linear-gradient(to bottom, #0956EB 0%, #3C9DFF 100.26%);

  --white: #FFFFFF;
  --black: #000000;
  --blue: #3C9DFF;
}

html, body {
  height: 100%;
}

.page-main {
  min-width: 1500px;
  width: 100%;
  margin: auto;
}
.page-section {
  padding-top: 5rem;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  will-change: transform;
  display: flex;
}
.c-container {
  min-width: 1200px;
  width: 1200px;
  margin: auto;
  height: 100%;
}

.logo-brand {
  max-width: 180px;
}
.logo-brand-mobile {
  max-width: 50px;
}
.c-nav {
  gap: 1rem;
  min-height: 60px;
}
.c-nav .nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 16px !important;
  color: var(--black);
}
.c-nav .nav-link.active {
    background: var(--c-theme-3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c-btn-lang, .c-lang-dropdown .dropdown-menu {
  min-width: 125px;
  border: none !important;
}
.c-lang-dropdown-mobile .c-btn-lang{
  min-width: 60px;
  width: 60px;
}
.c-lang-dropdown-mobile .dropdown-menu {
  min-width: 95px;
  border: none !important;
  font-size: 14px !important;
  left: -60%;
}
.c-lang-dropdown .dropdown-menu, .c-lang-dropdown-mobile .dropdown-menu {
  box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.18), 0 -1px 2px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12);
}

.c-lang-dropdown .dropdown-menu .dropdown-item:active, .c-lang-dropdown .dropdown-menu .dropdown-item.active {
  background-color: var(--blue);
}
.c-nav-logo {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(50%, -50%);
}
.c-nav-action {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-20%, -50%);
  gap: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fade-element-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1.5s ease, transform 2.5s ease;
}
.fade-element-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1.5s ease, transform 2.5s ease;
}

.fade-show {
  opacity: 1;
  transform: translateY(0);
}

.c-text-theme {
    background: var(--c-theme);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.c-text-theme-blue {
    background: var(--c-theme-3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.c-text-spacing {
  letter-spacing: 3px;
}

.c-btn-theme {
  background: var(--c-theme);
  position: relative;
  color: var(--white);
  padding: 6px 16px !important;
  line-height: 20px;
  border-radius: 10px;
  min-width: 140px;
}
.c-btn-theme:hover, .c-btn-theme:focus, .c-btn-theme:active, .c-btn-theme:hover::before, .c-btn-theme:focus::before, .c-btn-theme:active::before {
  background: var(--c-theme-hover);
  color: var(--white) !important;
}
.c-btn-theme::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 4px;
    background:var(--c-theme);
    -webkit-mask:
       linear-gradient(#fff 0 0) content-box,
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    margin: -3px;
}

.c-btn-theme-2 {
	background: var(--c-theme);
	background-repeat:no-repeat;
	position: relative;
	padding: 1px !important;
	line-height: 20px;
	border-radius: 10px;
	min-width: 140px;
	display:flex;
}
.c-btn-theme-2-body {
	border-radius: 5px;
	padding: 6px 16px !important;
	background:var(--white);
	color: var(--black);
	width:100%;
	font-weight:500;
	z-index:1;
}

.c-sect-textblock {
  width: 50%;
}
.c-sect-imgblock {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.c-sect-imgblock img {
  width: 100%;
}
.c-sect-textblock h3 {
  font-size: 30px;
  font-weight: 700;
}
.c-sect-textblock span {
  font-size: 20px;
  line-height: 32px;
}

.c-sec-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 80vh;
  padding-top: 0 !important;
}

.c-sec-1 h1 {
  font-size: 40px;
  font-weight: 700;
}
.c-sec-1 button {
  font-size: 22px;
  padding: .5rem !important;
}
.c-sec-1 .c-sect-imgblock img {
  max-width: 550px;
}
.c-sec-2 .c-sect-imgblock {
	position:absolute;
	left: -1%;
	top: 50%;
	transform: translate(0 , -50%);
}
.c-sec-2 .c-sect-imgblock img {
  max-width: 850px;
}
.c-sec-3 .c-sect-imgblock img {
  max-width: 450px;
}
.c-sec-6 .c-sect-imgblock img {
  max-width: 450px;
}
.c-sec-4 img {
  max-width: 80%;
}

.c-sec-3 .pl-1 {
	height: 100px;
}
.c-sec-3 .pl-2 {
	width: 200px;
}
.c-sec-3 .desc-block img {
	width:100%;
	max-width: 700px;
}
.c-sec-3 .desc-block span {
	font-size: 18px;
	color: #9D9D9D;
}



 .c-sec-7::before {
  content: "";
  position: absolute;
  top: 0%;
  right: 0%;
  transform: translate(0%, 0%);
  width: 400px;
  height: 800px;
  background: url('img/c-bg-1.png');
  background-repeat: no-repeat;
  background-size: 700px 700px;
}
.c-sec-7::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(-20%, 0%) rotate(180deg);
  width: 400px;
  height: 800px;
  background: url('img/c-bg-1.png');
  background-repeat: no-repeat;
  background-size: 700px 700px;
}

/*
.c-sec-1::before,
.c-sec-1 .c-sect-imgblock::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
  width: 400px;
  height: 400px;
  background: url('img/c-mesh.png');
  background-repeat: no-repeat;
  background-size: 400px 400px;
  filter: blur(5rem);
  z-index: -1;
  opacity: .5;
}
.c-sec-2 .c-sect-imgblock::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-70%, -50%);
  width: 200px;
  height: 200px;
  background: url('img/c-mesh.png');
  background-repeat: no-repeat;
  background-size: 200px 200px;
  filter: blur(5rem);
  z-index: -1;
  opacity: .7;
}
.c-sec-3 .c-sect-imgblock::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -30%) rotate(180deg);
  width: 200px;
  height: 200px;
  background: url('img/c-mesh.png');
  background-repeat: no-repeat;
  background-size: 200px 200px;
  filter: blur(5rem);
  z-index: -1;
  opacity: .7;
}
*/
.c-sec-4 .c-imgblock::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 300px;
  height: 300px;
  background: url('img/c-mesh.png');
  background-repeat: no-repeat;
  background-size: 300px 300px;
  filter: blur(5rem);
  z-index: -1;
  opacity: .4;
}
.c-sec-8 .c-sect-imgblock::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: 500px;
  height: 200px;
  background: linear-gradient(180.26deg, #05D4FC 0.4%, #BE0DEF 91.62%, #F202D3 137.89%);

  filter: blur(5rem);
  z-index: -1;
  opacity: .4;
}

.c-steps-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.c-steps-block.c-steps-left{
  align-items: end;
  text-align: right;
}

.c-steps-block h4 {
  font-size: 24px;
  font-weight: 600;
}
.c-steps-block span {
  font-size: 18px;
}

.c-sec-5 .c-op-block {
  max-width: 250px;
  border-radius: 10px;
  position: relative;

}
.c-sec-5 .c-op-block img {
  width: 100%;
  border-radius: 10px
}

.c-sec-5 .c-op-block .overlay {
  position: absolute;
  bottom: 0;
  background: rgba(190, 13, 239, 0.25); /* Black see-through */
  color: #FFFFFF;
  width: 100%;
  transition: .5s ease;
  color: white;
  font-size: 14px;
  padding: 20px;
  text-align: center;
}



.c-user-block {
  background: var(--c-theme-2);
  border-radius: 20px;
  padding: 1px;
}
.c-user-block .c-user-block-detail {
  background: var(--white);
  border-radius: 19px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 200px;
}


.c-user-block .c-user-block-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 1rem;
}
.c-user-block .c-user-block-desc {
  font-size: 18px;
  line-height: 20px;
}

.c-sec-7 .col {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.c-eco-sect {
  width: 80%;
}
.c-eco-block {
  max-width: 400px;
  width: 100%;
}

.c-eco-block .c-eco-block-title {
  font-size: 20px;
  font-weight: 600;
}
.c-eco-block .c-eco-block-desc {
  font-size: 20px;
  font-weight: 500;
  opacity: .5;
}

.footer {
  background: linear-gradient(90deg, rgba(22, 22, 22, 0) 0%, rgba(105, 105, 105, 0.25) 51.56%, rgba(22, 22, 22, 0) 100%);
  height: 100%;
  padding-top: 2px;
  display: flex;
}
.footer-body {
  background: var(--white);
  height: 100%;
  min-height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  font-size: 20px;
  text-align: center;
}



.gelatine {
	animation: gelatine 0.5s infinite;
}
@keyframes gelatine {
from, to { transform: scale(1, 1); }
	25% { transform: scale(0.9, 1.1); }
	50% { transform: scale(1.1, 0.9); }
75% { transform: scale(0.95, 1.05); }
}

.spin {
	animation: spin 1s infinite linear;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.elastic-spin {
	animation: elastic-spin 1s infinite ease;
}
@keyframes elastic-spin {
from { transform: rotate(0deg); }
to { transform: rotate(720deg); }
}

.pulse {
	animation: pulse 1s infinite ease-in-out alternate;
}
@keyframes pulse {
from { transform: scale(0.8); }
to { transform: scale(1.2); }
}

.flash {
	animation: flash 500ms ease infinite alternate;
}
@keyframes flash {
from { opacity: 1; }
to { opacity: 0; }
}

.hithere {
	animation: hithere 1s ease infinite;
}
@keyframes hithere {
  30% { transform: scale(1.2); }
  40%, 60% { transform: rotate(-20deg) scale(1.2); }
  50% { transform: rotate(20deg) scale(1.2); }
  70% { transform: rotate(0deg) scale(1.2); }
  100% { transform: scale(1); }
}

.grow {
  animation: grow 2s ease infinite;
}
@keyframes grow {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.fade-in {
  animation: fade-in 1s ease-in both;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-out {
  animation: fade-out 2s linear;
}
@keyframes fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

.bounce {
  animation: bounce 2s ease;
}
@keyframes bounce {
    70% { transform:translateY(0%); }
    80% { transform:translateY(-15%); }
    90% { transform:translateY(0%); }
    95% { transform:translateY(-7%); }
    97% { transform:translateY(0%); }
    99% { transform:translateY(-3%); }
    100% { transform:translateY(0); }
}

.bounce2 {
  animation: bounce2 2s ease;
}
@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

.shake {
  animation: shake 2s ease infinite;
}
@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.flip {
	backface-visibility: visible !important;
	animation: flip 2s ease infinite;
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.swing {
	transform-origin: top center;
	animation: swing 2s ease infinite;
}
@keyframes swing {
	20% { transform: rotate(15deg); }
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }
	80% { transform: rotate(-5deg); }
	100% { transform: rotate(0deg); }
}

.wobble {
  animation: wobble 2s ease infinite;
}
@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.fade-in-down {
  animation: fade-in-down 1s ease both;
}
@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-left {
  animation: fade-in-left 2s ease both;
}
@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  animation: fade-in-right 2s ease both;
}
@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-out-down {
  animation: fade-out-down 2s ease ;
}
@keyframes fade-out-down {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.fade-out-right {
  animation: fade-out-right 2s ease ;
}
@keyframes fade-out-right {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}

.bounce-in {
  animation: bounce-in 2s ease forwards;
}
@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% { transform: scale(.9); }
  100% { transform: scale(1); }
}

.bounce-in-right {
  animation: bounce-in-right 2s ease ;
}
@keyframes bounce-in-right {
  0% {
    opacity: 0;
    transform: translateX(350px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

.bounce-out {
  animation: bounce-out 2s ease ;
}
@keyframes bounce-out {
  0% { transform: scale(1); }
  25% { transform: scale(.95); }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(.3);
  }
}

.bounce-out-down {
  animation: bounce-out-down 2s ease ;
}
@keyframes bounce-out-down {
  0% { transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

.rotate-in-down-left {
  animation: rotate-in-down-left 2s ease ;
}
@keyframes rotate-in-down-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.rotate-in-up-left {
  animation: rotate-in-up-left 2s ease ;
}
@keyframes rotate-in-up-left {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}

.hinge {
  animation: hinge 2s ease ;
}
@keyframes hinge {
  0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }
  20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }
  80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }
  100% { transform: translateY(700px); opacity: 0; }
}

.roll-in {
  animation: roll-in 2s ease ;
}
@keyframes roll-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

.roll-out {
  animation: roll-out 2s ease ;
}
@keyframes roll-out {
    0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}

.slide-in-bottom {
  will-change: opacity, transform;
	-webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.fade-in-top {
	-webkit-animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-top 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}/* ----------------------------------------------
 * Generated by Animista on 2025-6-6 23:50:41
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation fade-in-top
 * ----------------------------------------
 */
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .page-main {
    min-width: 100%;
  }
  .page-section {
    padding-top: 5rem;
    min-height: 100vh;
    height: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .c-container {
    min-width: 100%;
    width: 100%;
    margin: 0;
  }
  .c-nav {
    gap: 0;
    width: 100%;
    margin-bottom: 2rem;
  }

.c-nav .nav-item {
  justify-content: start;
}
  .c-nav-action {
    position: relative;
    transform: none;
    top: 0;
    left: 0;
  }

  .c-sect-textblock {
    width: 100%;
    text-align: center;
  }
  .c-sect-imgblock {
    width: 100%;
  }
.c-sect-textblock h3 {
  font-size: 24px;
}
.c-sect-textblock span {
  font-size: 16px;
  line-height: 25px;
}

.c-sec-6 .c-sect-textblock span {
  text-align: start;
}
  .c-sec-1 {
    flex-direction: column;
    justify-content: start;
    padding-top: 3rem !important;
  }
  .c-sec-1 h1 {
    font-size: 28px;
  }
  .c-sec-1 h4 {
    font-size: 18px;
  }

  .c-sec-1 .c-sect-imgblock img {
    max-width: 300px;
  }


.c-sec-1 .c-sect-imgblock::before {
  width: 200px;
  height: 200px;
  background-size: 200px 200px;
}


.c-sec-2 .c-sect-imgblock {

	position:relative;
	width: 400px;
	transform: none;
	top:0;
	left:0;
}
.c-sec-2 .c-sect-imgblock img {
  max-width: 100%;
}

.c-sec-3 .pl-1 {
	height: auto;
	width:100%;
	max-width: 300px;
}
.c-sec-3 .pl-2 {
	max-height: 100px;
	width:auto;
	height: 100%;
}
.c-sec-3 .desc-block img {
	width:100%;
	max-width: 500px;
}
.c-sec-3 .desc-block span {
	font-size: 16px;
	color: #9D9D9D;
	max-width: 300px;
	text-align: center
}

.c-steps-block.c-steps-left, .c-steps-block.c-steps-right{
  align-items: start;
  text-align: left;
}

.c-steps-block h4 {
  font-size: 20px;
  font-weight: 600;
}
.c-steps-block span {
  font-size: 16px;
}
.c-eco-sect {
  width: 100%;
}
  .bounce-in-right {
    animation: bounce-in-right 2s ease !important;
  }
  @keyframes bounce-in-right {
    0% {
      opacity: 0;
      transform: translateX(200px);
    }
    60% {
      opacity: 1;
      transform: translateX(-30px);
    }
    80% { transform: translateX(10px); }
    100% { transform: translateX(0); }
  }




.c-sec-1::before, .c-sec-3::before, .c-sec-7::before {
  top: 10%;
  right: 0%;
  transform: translate(0%, 0%);
  width: 240px;
  height: 500px;
  background-size: 500px 500px;
}
.c-sec-2::before, .c-sec-3::after, .c-sec-7::after {
  top: -10%;
  left: 0%;
  transform: translate(-20%, 0%) rotate(180deg);
  width: 300px;
  height: 600px;
  background-size: 600px 600px;
}

.c-sec-8 .c-sect-imgblock::before {
  transform: translate(-50%, -30%);
  width: 300px;
  height: 140px;
}
.footer-body {
  min-height: 60px;
  font-size: 14px;
}

}