/* 
naming convention:
BEM - BLOCK__ELEMENT--MODIFIER
name spacing:
u = utilities
l = layout
c = component 
js = javascript hook
breakpoints:
mobile - 600px
*/

/* CSS vars */

:root {
  /* colors */

  --clr-violet: #421984;
  --clr-red: #cc383f;
  --clr-lime: #24AB43;
  --clr-blue: #36A0D0;
  --clr-lightblue: #C8EAFB;
  --clr-lightgreen: #BAE5C7;
  --clr-pink: #EFC4C5;
  --clr-gold: #F2CD35;
  --clr-text: black;
  --clr-text-reverse: white;
  /* heights */
  --height-header: 68px;
  --height-viewport: 100vh;
  /* spacing */
  --b-space: 135px;
  --b-space-sm: 80px;
  /* font family */
  --ff-body: 'Nunito', sans-serif;
  --ff-heading: var(--ff-body);
  /* font sizes */
  --fs-h1: 83px;
  --fs-h2: 46px;
  --fs-h3: 24px;
  --fs-p: 18px;
  --fs-p-lg: 30px;
  --fs-p-sm: 15px;
  --overlap: 690px;
}

@media screen and (max-width:1360px) { 

  :root {
    --fs-h1: 70px;
    --fs-p-lg: 24px;
  }
}

@media screen and (max-width:980px) { 
  :root {
    --b-space: 100px;
    --fs-h1: 60px;
    --fs-h2: 40px;
  }
}


@media screen and (max-width:600px) {
  :root {
    /* font sizes */
    --fs-h1: 50px;
    --fs-h2: 32px;
    --fs-h3: 18px;
    --fs-p: 16px;
    --fs-p-lg: 18px;
    --fs-p-sm: 14px;
    /* spacing */
    --b-space: 75px;
    --b-space-sm: 50px;

  }
} 

@media screen and (max-width:400px) {
  :root {
    --fs-h1: 36px;
    --fs-h2: 26px;
    --b-space: 60px;
    --b-space-sm: 40px;
  }

}

/* utilities */

.u-cf:after { 
	content:"";
	display:table;
	clear:both;
}

.u-wc {
	width:100%;
	max-width: 1200px;
  padding: 0 60px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

@media screen and (max-width: 980px) {

  .u-wc { 
    padding: 0 40px;
  }

}

@media screen and (max-width:400px) {

  .u-wc {
    padding: 0 30px;
  }

}

.u-wc--sm {
  max-width: 980px;
}

.u-wc--full {
  max-width: 100%;
}

.u-center{
  text-align: center;
}

.u-clr-primary {
  color: var(--clr-primary500);
}

/* base styles */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	background: white;
	font-family: var(--ff-body);
  font-weight: 400;
	font-size: var(--fs-p);
	margin: 0;
	color: var(--clr-text);
  position: relative;
  overflow-x: hidden;
  line-height: 1.64;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  font-weight: 700;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin: 0 0 32px;
  transition: .3s font-size;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin: 32px 0 24px;
}

h2:first-child {
  margin-top: 0;
}


h3 {
  font-size: var(--fs-h3);
  margin: 32px 0 20px;
  line-height: 1.1;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.3;
  margin: 28px 0 16px;
}

h4:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
  margin-bottom: 0;
}


p {
  margin-bottom: 20px;
}

.p--sm {
  font-size: var(--fs-p-sm);
  line-height: 1.8;
}

.p--lg {
  font-size: var(--fs-p-lg);
  line-height: 1.43;
  margin-bottom: 28px;
  font-weight: 500;
}


@media screen and (max-width: 600px) {

  h1 {
    margin-bottom: 16px;

  }
  
  h3 {
    margin-bottom: 16px;
  }

  p {
    margin-bottom: 12px;
  }

  .p--lg { 
    margin-bottom: 20px;
  }
}

li:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 24px;
  margin: 20px 0 16px;
}

ul.is-style-no-left-spacing {
  padding-left: 0;
}

ul:first-child {
  margin-top: 0;
}

ul:last-child {
  margin-bottom: 0;
}

ol {
  margin: 20px 0 16px;
}

ol:first-child {
  margin-top: 0;
}

ol:last-child {
  margin-bottom: 0;
}

li {
  padding-left: 4px;
  margin-bottom: 4px;
}

.ul--lg li {
  font-size: var(--fs-p-lg);
}


a, a:focus{
   outline: 0;
}

a {
  text-decoration: none;
  color: var(--clr-accent500);
	transition:.3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: var(--clr-accent400);
}

img, svg{
	max-width:100%;
	height:auto;
}

hr {
  display: block;
  padding: 0;
  height: 1px;
  background: var(--clr-primary100);
  margin: 40px 0;
  border: none !important;
}

.c-section {
  padding: var(--b-space) 0;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.u-typographyDark {
  color: var(--clr-text-reverse);
}

.c-section--lg {
  padding: var(--b-space-lg) 0;
}

.c-section--sm {
  padding: var(--b-space-xsm) 0;
}

.c-section--noBottomPadding {
  padding-bottom: 0;
}

.c-section--noTopPadding {
  padding-top: 0;
}

input{
  outline:none;
}

.c-btnGroup {
  display: flex;
  grid-gap: 16px;
  margin-top: 40px;
}

.c-btnGroup--center {
  justify-content: center;
}

.c-btn {
  display: inline-block;
  padding: 26px 56px;
  border: none;
  color: white;
  background: black;
  /* border: 1px solid var(--clr-accent500); */
  text-decoration: none;
  font-size: 27px;
  font-family: var(--ff-heading);
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  line-height: inherit;
  transition: .3s background, .3s color;
}

.c-btn:hover {
  color: white;
  background: #443c3e;
}

@media screen and (max-width: 600px) {

  .c-btnGroup {
    flex-direction: column;
    grid-gap: 12px;
  }

  .c-btn {
    padding: 14px 24px 11px;
    width: 100%;
    font-size: 18px;
  }

}


.c-hero {
  background: var(--clr-violet);
  color: white;
  text-align: center;
  padding-bottom: var(--overlap);
}


.c-hero__content {
  max-width: 905px;
  margin: 0 auto;
  position: relative;
}

.c-hero__content h1, .c-hero__content p, .c-hero__deco {
  position: relative;
  z-index: 2;
}

.c-hero__circle1 {
  display: block;
  position: absolute;
  top: calc(100% - 400px);
  right: calc(100% - 50px);
  background: url('imgs/circle-1.jpg') center center / cover;
  width: 458px;
  aspect-ratio: 1 / 1;
}

.c-hero__circle2 {
  display: block;
  position: absolute;
  top: -169px;
  left: calc(100% - 90px);
  background: url('imgs/circle-2.jpg') center center / cover;
  width: 464px;
  aspect-ratio: 1 / 1;
}

.c-hero__circle3 {
  display: block;
  position: absolute;
  top: calc(100% - 80px);
  left: calc(100% + 10px);
  background: url('imgs/circle-3.jpg') center center / cover;
  width: 353px;
  aspect-ratio: 1 / 1;
}

.c-hero__deco {
  margin: 48px 0;
}

.c-hero__deco span {
  display: block;
  border-radius: 50%;
  background-color: var(--clr-lime);
  width: 32px;
  height: 32px;
  margin: 18px auto;
}

.c-hero__deco span:nth-of-type(2) {
  background: var(--clr-red);
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 1200px) {
 
  .c-hero__circle1 {
    top: calc(100% - 300px);
    right: calc(100% - 150px);
    width: 358px;
  }
  
  .c-hero__circle2 {
    top: -100px;
    left: calc(100% - 150px);
    width: 364px;
  }
  
  .c-hero__circle3 {
    top: calc(100% - 80px);
    left: calc(100% - 60px);
    width: 253px;
  }

}

@media screen and (max-width: 600px) {
  .c-hero__circle1 {
    top: calc(100% - 300px);
    right: calc(100% - 150px);
    width: 258px;
  }
  
  .c-hero__circle2 {
    top: -100px;
    left: calc(100% - 150px);
    width: 264px;
  }
  
  .c-hero__circle3 {
    top: calc(100% - 80px);
    left: calc(100% - 60px);
    width: 153px;
  }

  .c-hero__deco {
    margin: 24px 0;
  }
  
  .c-hero__deco span {
    display: block;
    border-radius: 50%;
    background-color: var(--clr-lime);
    width: 20px;
    height: 20px;
    margin: 12px auto;
  }
  
  .c-hero__deco span:nth-of-type(2) {
    background: var(--clr-red);
    width: 30px;
    height: 30px;
  }

}

.c-testimonials {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--b-space) / 2);
}

.c-testimonials .u-wc {
  position: relative;
}

.c-testimonials__quote {
  position: absolute;
  top: -500px;
  bottom: 250px;
  left: 46.5%;
  right: -50px;
  background: var(--clr-lightblue);
  border-radius: 140px;
}


.c-testimonials__quote:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 160px;
  width: 0; 
  height: 0; 
  border-left: 0 solid transparent;
  border-right: 130px solid transparent;
  border-top: 70px solid var(--clr-lightblue);
}


.c-testimonialSlider.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.c-testimonialSlider.owl-carousel .owl-stage {
  max-height: 100%;
  overflow: visible;
  display: flow-root;
}

.c-testimonialSlider .owl-item {
  opacity: 0;
  transition: .3s opacity;
}

.c-testimonialSlider .owl-item.active {
  opacity: 1;
}

.c-testimonialItem {
  text-align: center;
}

.c-testimonialItem p {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.15;
  max-width: 890px;
  margin: 0 auto;
}


.c-testimonialItem__person {
  margin-top: 80px;
  font-size: var(--fs-h3);
}

.c-testimonialItem__person h5 {
  font-weight: 700;
  font-size: var(--fs-h3);
  margin: 0;
}

.c-testimonialItem__person p {
  font-weight: 500;
  font-size: var(--fs-p);
  line-height: 1.6;
}

.c-testimonialItem__person img {
  display: block;
  margin: 0 auto 12px;
  border-radius: 50%;
}

@media screen and (max-width: 800px) {
  .c-testimonials__quote {
    border-radius: 100px;
    right: 20px;
    bottom: 240px;
  }
  .c-testimonialItem__person {
    margin-top: 60px; 
  }

  .c-testimonials__quote::after {
    left: 120px;
    border-right: 60px solid transparent;
    border-top: 40px solid var(--clr-lightblue);
  }


}

@media screen and (max-width: 600px) {
  .c-testimonials__quote {
    border-radius: 60px;
    right: 15px;
    bottom: 227px;
  }


  .c-testimonialItem__person {
    margin-top: 40px;
  }


}

@media screen and (max-width: 480px) {
  .c-testimonials__quote {
    border-radius: 20px;
    bottom: 185px;
  }

  .c-testimonialItem__person img {
    max-width: 100px;
  }

  .c-testimonials__quote::after {
    left: 80px;
    border-right: 40px solid transparent;
    border-top: 22px solid var(--clr-lightblue);
  }


}

@media screen and (max-width: 400px) {
  .c-testimonials__quote {
    right: 9px;
  }
}

.c-socialProof {
  margin-top: calc(var(--overlap) * -1);
  position: relative;
  z-index: 2;
}

.c-facts {
  --deco1: 70px;
  --deco2: 82px;
  --decoSpace: 25px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  width: 1200px;
  max-width: calc(100% - 80px);
  margin: calc(var(--deco1) + calc(var(--deco2) / 2) + (var(--decoSpace) * 2) ) auto 0;
  position: relative;
  z-index: 2;
  padding: 120px 65px 50px;
  display: flex;
  align-items: center;
}

.c-facts__fact {
  position: absolute;
  left: 50px;
  top: -130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 53px;
  background: black;
  width: 192px;
  height: 192px;
}

.c-facts__fact:after {
  content: '';
  height: 0;
  width: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 28px solid black;
  position: absolute;
  right: 4px;
  bottom: 4px;
  transform: rotate(-45deg);
}

.c-facts__deco {
  position: absolute;
  bottom: calc(100% - (var(--deco2) / 2));
  margin-left: calc((var(--deco2) / 2) * -1);
  left: 50%;
}

.c-facts__deco span {
  display: block;
  border-radius: 50%;
  background-color: var(--clr-blue);
  width: var(--deco1);
  height:  var(--deco1);
  margin: 0 auto;
}

.c-facts__deco span:nth-of-type(2) {
  background: var(--clr-gold);
  width:  var(--deco2);
  height: var(--deco2);
  margin-top:  var(--decoSpace);
}

.c-facts__content {
  width: 46%;
  margin-right: 10%;
}

.c-facts__content p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}

.c-facts__content p:before {
  content: '1';
  background: black;
  border-radius: 50%;
  height: 52px;
  width: 52px;
  margin-right: 18px;
  flex-shrink: 0;
  position: relative;
  top: -12px;
  color: white;
  font-size: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-facts__content p:nth-of-type(2):before {
  content: '2';
}

.c-facts__content p:nth-of-type(3):before {
  content: '3';
}

.c-facts__img {
  text-align: center;
}

.c-facts__imgWrap {
  position: relative;
  margin: 0 12px 32px
}

.c-facts__imgWrap img {
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.c-facts__deco1 {
  position: absolute;
  z-index: 1;
  width: 24%;
  left: -6%;
  bottom: 14%;
  border-radius: 50%;
  background: var(--clr-blue);
  aspect-ratio: 1 / 1;
}

.c-facts__deco2 {
  position: absolute;
  z-index: 3;
  width: 18%;
  right: 20%;
  top: -8%;
  border-radius: 50%;
  background: var(--clr-lime);
  aspect-ratio: 1 / 1;
}

.c-facts__deco3 {
  position: absolute;
  z-index: 2;
  width: 40%;
  right: -15%;
  top: -20%;
  border-radius: 50%;
  background: var(--clr-red);
  aspect-ratio: 1 / 1;
}


@media screen and (max-width: 1000px) {

  .c-facts {
    display: block;
    padding: 120px 65px 65px;
  }

  .c-facts__content {
    width: 100%;
    margin: 0 0 80px;
  }

  .c-facts__img {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  .c-facts__imgWrap {
    margin-bottom: 0;
  }

}

@media screen and (max-width: 800px) {

  .c-facts__fact {
    position: absolute;
    left: -20px;
    top: -82px;
    font-size: 36px;
    width: 150px;
    height: 150px;
  }

}


@media screen and (max-width: 600px) {

  .c-facts {
    --deco1: 30px;
    --deco2: 50px;
    --decoSpace: 16px;
    padding-top: 100px;
  }

  .c-facts__content p::before {
    height: 40px;
    width: 40px;
    font-size: 18px;
  }

  .c-facts__content p {
    margin-bottom: 20px;
    margin-left: -45px;
  }

  .c-facts__fact {
    left: -20px;
    top: -62px;
    font-size: 30px;
    width: 120px;
    height: 120px;
  }

}

@media screen and (max-width: 400px) {

  .c-facts {
    padding: 78px 30px 40px;
    max-width: calc(100% - 40px);
  }

  .c-facts__content {
    margin: 0 0 40px;
  }

  .c-facts__content p::before {
    position: static;
    margin-bottom: 12px;
  }

  .c-facts__content p {
    margin-left: 0;
    flex-direction: column;
  }

  .c-facts__fact {
    left: -10px;
    top: -52px;
    font-size: 27px;
    width: 100px;
    height: 100px;
  }

  .c-facts__fact::after {
    right: 1px;
    bottom: 1px;
  }

}

.c-awards {
  text-align: center;
  padding-bottom: 24px;
}

.c-awardItems {
  display: flex;
  grid-gap: 60px;
  margin: 123px 0 100px;
}

.c-awardItems .c-awardItem {
  width: calc((100% - 120px) / 3);
}

.c-awardItem {
  text-align: center;
}

.c-awardItem__num {
  font-size: 75px;
  font-weight: 700;
  display: block;
  line-height: 1;
  position: relative;
}

.c-awardItem__num:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: calc(50% + 8px);
  top: -54px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background-color: var(--clr-lightgreen);
}

.c-awardItem:nth-of-type(2) .c-awardItem__num:after {
  background-color: var(--clr-pink);
}

.c-awardItem:nth-of-type(3) .c-awardItem__num:after {
  background-color: var(--clr-lightblue);
}

.c-awardItem h3 {
  margin: 16px auto 4px;
}

.c-awardItem p {
  max-width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  .c-awardItems {
    flex-wrap: wrap;
    grid-gap: 60px;
    justify-content: center;
    max-width: 800px;
    margin: 100px auto 80px;
  }
  
  .c-awardItems .c-awardItem {
    width: calc((100% - 60px) / 2);
  }

  .c-awardItem__num:after {
    top: -30px;
    width: 80px;
    height: 80px;
  }

}

@media screen and (max-width: 600px) {

  .c-awards {
    padding-bottom: 12px;
  }

  .c-awardItems {
    grid-gap: 40px;
    margin: 60px auto 40px;
  }

  .c-awardItems .c-awardItem {
    width: 100%;
  }

  .c-awardItem__num {
    font-size: 50px;
  }
  
  .c-awardItem__num:after {
    top: -24px;
    width: 60px;
    height: 60px;

  }


}

.c-modal {
  background: var(--clr-violet);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  z-index: 9999;
  display: flex;
  padding: 100px 60px;
  text-align: center;
  overflow-x: auto;
  visibility: hidden;
  transform: scale(.9);
  opacity: 0;
  transition: .3s transform, .3s opacity, 0s visibility .3s;
}

.c-modal--violet {
  background: var(--clr-violet);
}

.c-modal--active {
  visibility: visible;
  transform: none;
  opacity: 1;
  transition-delay: 0s;
}

.c-modal__close {
  position: absolute;
  top: 60px;
  right: 60px;
  background: black;
  background-image: url('imgs/close-icon.png');
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  border: none;
  font-size: 0;
  outline: none;
  transition: .3s background;
}

.c-modal__close:hover {
  background-color: #2b2b2b;
}


.c-modal .u-wc {
  margin: auto;
  padding: 0;
}

.c-modal h2 {
  font-size: 60px;
  margin-bottom: 70px;
}

.c-modal h2 + p {
  max-width: 630px;
  margin-inline: auto;
}

.c-modal__footer {
  text-align: center;
  max-width: 830px;
  margin: 0 auto;
}

.c-modal__footer p:first-child {
  max-width: 575px;
  margin-inline: auto;
}

.c-modal__footer p {
  font-size: var(--fs-p-sm);
}

.c-modal__footer img {
  display: block;
  margin: 48px auto 0;
}

@media screen and (max-width: 600px) {
  .c-modal__footer img {
    margin: 24px auto 0;
  }
}

@media screen and (max-width:980px) {

  .c-modal__close {
    top: 30px;
    right: 30px;
  }
}


@media screen and (max-width:600px) {

  .c-modal {
    padding: 60px 40px;
  }

  .c-modal h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .c-modal__close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width:400px) {
  .c-modal {
    padding: 60px 30px;
  }
}

.c-form  {
  max-width: 720px;
  margin: 80px auto;
}

input::placeholder { 
  color: white;
  opacity: 1;
}

.c-form textarea, .c-form input[type="text"], .c-form input[type="email"] {
  border: 0;
  display: block;
  width: 100%;
  padding: 0 12px;
  height: 98px;
  text-align: center;
  font-size: 26px;
  color: black;
  background: white;
  border-radius: 80px;

}

.c-form__input {
  position: relative;
  margin-top: 34px;
}

.c-form__input:first-child {
  margin-top: 0;
}

.c-form__input:focus-within label, .c-form__input input:not(:placeholder-shown) + label {
  display: none;
}

.c-form__input label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #939393;
  font-size: 29px;
  display: block;
  margin-right: -50%;
  font-weight: 700;
}

.c-form__input label strong {
  color: black;
}

.c-form textarea {
  width: 100% !important;
}

.c-form textarea:focus, .c-form input[type="text"]:focus, .c-form input[type="email"]:focus {
  outline: none;
}

.c-form textarea.error, .c-form input[type="text"].error, .c-form input[type="email"].error {
  border: 4px solid red;
}

.c-form .c-btn {
  margin-top: 80px;
  min-width: 290px;
}

.genisys {
  position: absolute !important;
  z-index: -1;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
  color: white;
  opacity: 0;
  margin: 0 !important;
  padding: 0 !important;
}

@media screen and (max-width:980px) {
  .c-form textarea, .c-form input[type="text"], .c-form input[type="email"] {
    font-size: 22px;
    padding: 12px 0;
    height: 68px;
  }

  .c-form__input label {
    font-size: 22px;
  }

  .c-form__input {
    margin-top: 24px;
  }

}

@media screen and (max-width:600px) {

  .c-form {
    margin: 44px 0;
  }

  .c-form .c-btn {
    margin-top: 32px;
  }

  .c-form textarea, .c-form input[type="text"], .c-form input[type="email"] {
    font-size: 18px;
    padding: 12px 0;
    height: 48px;
  }

  .c-form .c-btn {
    min-width: 100%;
  }

  .c-form__input {
    position: relative;
    margin-top: 12px;
  }


  .c-form__input label {
    font-size: 18px;
  }

}

@media screen and (max-width:600px) {

  .c-form textarea, .c-form input[type="text"], .c-form input[type="email"],  .c-form__input label {
    font-size: 16px;
  }

}

@media screen and (max-width:400px) {

  .c-form textarea, .c-form input[type="text"], .c-form input[type="email"], .c-form__input label  {
    font-size: 13px;
  }

}

.c-mainFooter {
  text-align: center;
  padding: var(--b-space-sm) 0;
}

.c-mainFooter .u-wc {
  max-width: 950px;
}

.c-mainFooter p:first-child {
  max-width: 575px;
  margin-inline: auto;
}

.c-mainFooter p {
  font-size: var(--fs-p-sm);
}

.c-mainFooter img {
  display: block;
  margin: 48px auto 0;
}

@media screen and (max-width: 600px) {
  .c-mainFooter img {
    margin: 24px auto 0;
  }
}


.animate {
  opacity: 0;
  filter: blur(5px);
  visibility: hidden;
  transform-origin: top;
  transform:  rotate(1deg) scale(1.1) translateY(1.8%);
  transition: 1s opacity .3s, 1s transform .3s, 1s filter .3s, 0s visibility .3s;
}

.show {
  visibility: visible;
  opacity: 1;
  filter: none;
  transform: none;
}

.animate[animation="slow-zoom"] {
  filter: none;
  transform: scale(1);
  transition: 1s opacity .3s, 20s transform .3s, 0s visibility .3s;
}

.animate[animation="slow-zoom"].show {
  transform: scale(1.2);
}

.animate[delay="1"] {
  transition-delay: .3s;
}

.animate[delay="2"] {
  transition-delay: .6s;
}

.animate[delay="3"] {
  transition-delay: .9s;
}

.animate[delay="4"] {
  transition-delay: 1.2s;
}