/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

p {
  color: #868E96;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-defaults);
}

* {
  overflow-y: none;
}

.btn-get-started {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  text-align: center;
  width: 325px;
  transition: 0.5s;
  color: var(--color-white);
  background-color: var(--btn-color);
  font-family: var(--font-secondary);
}
.btn-get-started:hover {
  background-color: #ff5866;
  color: #E9ECEF;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before, #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-btn);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}
.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

@media (max-width: 640px) {
  .btn-hidden {
    display: none;
  }

  .header > div {
    text-align: center;
    justify-content: center;
    display: flex;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.wrapper{
  display: flex;
}

.stick-aside{
  position: sticky;
  top: 50px;
}

/* header {
  position: sticky;
  top: 0;
} */

.header {
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  backdrop-filter: blur(8px);
  width: 100%;
  position: fixed;
  top: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .btn-getstarted, .header .btn-getstarted:focus {
  color: var(--btn-color);
  border: 2px solid var(--btn-color);
  background: none;
  padding: 8px 23px;
  border-radius: var(--border-radius);
  transition: 0.3s;
  font-weight: 600;
  font-family: var(--font-secondary);
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  transition: ease-in 0.4s;;
  color: var(--color-white);
  background-color: var(--btn-color);
}
@media (max-width: 1279px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}
@media (max-width: 640px) {
  .stick-aside{
    position: relative;
  }

  .header {
    backdrop-filter: blur(0);
  }
  
  header {
    position: relative;
  }

  .wrapper{
    flex-direction: column;
  }

  .wrapper > div{
   margin-bottom: 30px;;
  }

  .linkAction {
    display: none;
    background-color: #256EFF !important;
  }

  .wrapper {
    display: none;
  }
  
}
@media (max-width: 600px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
    position: relative;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
  }
  .navbar > ul > li {
    white-space: nowrap;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--color-secondary-dark-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-primary);
  }
  .navbar .dropdown a:hover:before, .navbar .dropdown:hover > a:before, .navbar .dropdown .active:before {
    visibility: hidden;
  }
  .navbar .dropdown a:hover, .navbar .dropdown .active, .navbar .dropdown .active:focus, .navbar .dropdown:hover > a {
    color: var(--color-white);
    background: var(--color-secondary);
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }
  .navbar .megamenu {
    position: static;
  }
  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }
  .navbar .megamenu ul li {
    flex: 1;
  }
  .navbar .megamenu ul li a, .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }
  .navbar .megamenu ul li a:hover, .navbar .megamenu ul li .active, .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {

  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-white);
  }
  .navbar .dropdown ul, .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }
  .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }
  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }
  .mobile-nav-active .navbar {
    left: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 50vh;
  background: url("../images/IMG.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 60px;
}

.hero-animated > div > div > h1 {
  margin: 0 0 10px 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: left;
}

.hero-animated > div > div > p {
  color: #E9ECEF;
  margin: 0 0 30px 0;
  font-size: 1.1rem;
  text-align: left;
}

.hero-animated > div > div > div {
  text-align: left;
}

@media (max-width: 640px) {
  .hero-animated {
    background: url("../images/IMG-MOB.png") no-repeat center center;
    padding: 0px 0 40px 0;
  }
  .hero-animated  > div {
    flex-direction: column-reverse;
    flex-wrap: wrap-reverse;
    width: 370px;
  }
  .hero-animated > div > div > h1 {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    text-align: center;
  }
  
  .hero-animated > div > div > p {
    margin: 0 0 30px 0;
    text-align: center;
    font-size: 16px;
  }
  
  .hero-animated > div > div > div {
    text-align: center;
  }
  .hero-animatedHidden {
    height: 200px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Section One
--------------------------------------------------------------*/
.section-one {
  background-color: #F8F9FA;
}

.section-one .service-item {
  padding: 10px;
  transition: all ease-in-out 0.4s;
  height: 100%;
}
.sticker {
  position: sticky;
  --webkit-position: sticky;
  top: 0;
}

.section-one .service-item h1 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 2rem;
  color: var(--color-bluec);
}

.section-one .service-item p {
  line-height: 24px;
  margin-top: 15px;
  color: var(--text-paragraph);
}

.section-one .service-item:hover {
  transform: translateY(-10px);
}

.section-one .service-item:hover h4 a {
  color: var(--color-primary);
}

.section-one-h1 {
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  color: #D61C2F !important; 
}

.section-one-text-hidden {
  display: none;
}

.section-one-img-hidden{
  display: none;
}

@media (max-width: 640px) {

  .section-one-h1 {
    display: none; 
  }

  .section-one-img-hidden1{
    display: none;
  }

  .section-one-img-hidden{
    display: block;
  }

  .section-one-text-hidden {
    display: block;
    font-size: 26px;
    color: var(--color-bluec);
  }

  .section-one .service-item > h1 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Section Two
--------------------------------------------------------------*/
.disabled {
  display: none;
}

.about .about-img {
  margin: 0;
}

.about-column {
  max-width: 400px;
}

.about .titleTwo {
  font-size: 2rem;
  color: var(--color-title);
  font-weight: 700;
  margin-bottom: 50px;
}

.link-disabled{
  display: none;
}

.box-sectionTwo {
  background-color: #F8F9FA;
  padding: 40px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 15px;
  max-width: 390px;
  min-width: 340px;
  max-height: 104px;
  display: flex;
  align-items: center;
}

.box-sectionTwo-title {
  padding-left: 30px;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }
  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}
.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

.wrapper-items{
  margin-top: 30px;
}

.content-section-two{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .link-disabled{
    display: block;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}


/*--------------------------------------------------------------
# Section Three
--------------------------------------------------------------*/
.news {
  background-color: #FCFCFC;
  padding: 60px 0;
}

.content-section-three-carrosel {
  display: none;
}

.news div h1 {
  margin-top: 20px;
  font-size: 2rem;
  color: var(--color-title);
  font-weight: 700;
}

.news div p {
  margin-top: 10px;
  margin-bottom: 100px;
  max-width: 100%;
  color: var(--text-paragraph);
}

.box-sectionThree {
  background-color: #F8F9FA;
  padding: 10px;
  margin-left: 20px;
  border-radius: 4px;
  width: 216px;
  height: 140px;
  display: flex;
  align-items: center;
}

@media (max-width: 900px) {
  .news h2 {
    font-size: 32px;
  }
  .news p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .content-section-three {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .news .content-section-three {
    text-align: center;
  }

  .content-section-three div {
    width: 340px;
    padding-right: 20px;
    margin-right: 0 !important;
  }
}

@media (max-width: 640px) {
  .content-section-three-carrosel {
    display: block;
  }

  .news div h1 {
    margin-top: 20px;
    font-size: 1.6rem;
    color: var(--color-title);
    font-weight: 700;
    text-align: left;
  }



  .news div p {
    text-align: left;
    /* margin-left: 20px !important; */
  }

  .arraste {
    font-size: 12px;
    font-weight: 600;
    text-align: end;
    color: #495057;
  }

  .content-section-three-hidden{
    display: none;
  }

  .news h2 {
    font-size: 32px;
  }
  .news p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .box-sectionThree-carousel > p {
    margin: 0 !important;
    font-size: 16px;
    padding-left: 20px;
  }

  .owl-carousel .owl-item img {
    display: block;
    width: 100px !important;
}

  .box-sectionThree-carousel {
    background-color: #F8F9FA;
    padding: 10px;
    margin-left: 40px;
    border-radius: 4px;
    width: 300px;
    height: 140px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #256EFF;
  }

  .box-sectionThree-carousel > img {
    width: 56px;
    height: 56px;
    margin: 0 !important;
  }

  .content-section-three {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .news .content-section-three {
    text-align: center;
  }

  .content-section-three div {
    width: 340px;
    padding-right: 20px;
    margin-right: 0 !important;
  }

  .about-column {
    margin-bottom: 20px;
  }

  .content-section-Two {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Section Four
--------------------------------------------------------------*/
.subscribe {
  width: 100%;
  min-height: 50vh;
  background: url("../images/img-car.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 40px 0 40px;
}

.sib-form .checkbox, .sib-form .radio-button {
  top: -11px;
  right: -10px;
}

/*form */
#sib-form {
  border-radius: var(--border-radius);
  margin-top: 40px;

}

#mc_embed_signup_scroll h1{
  margin-top: 30px;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  padding-bottom: 8px;
  color: var(--color-bluec);
}

#mc_embed_signup_scroll p{
  text-align: center;
  font-size: 14px;
  padding-bottom: 15px;
  color: var(--text-paragraph);
}

.mc-field-group > label {
    margin-bottom: 15px;
    position: relative;
    display: block;
}

.mc-field-groupt {
  display: block;
}

.mc-field-group > label > input {
  width: 100%;
  padding: 0px 15px !important;
  border: 1px solid #bdbdbd;
  outline: none;
  height: 56px;
  border-radius: 4px;
  display: block;
}

.mc-field-group > label > input::placeholder {
  opacity:0
}

.mc-field-group > label > span {
  position: absolute;
  color: var(--text-paragraph);
  top: -11px;
  left: 25px;
  transform: translateY(30px);
  font-size: 0.8rem;
  transition-duration: 300ms;
}

.mc-field-group label:focus-within > span, input:not(:placeholder-shown) + span {
  color: var(--text-paragraph);
  transform: translateY(12px);
}
  
#mc-embedded-subscribe-form {
  padding: 10px 7% 10px 7%;
}

#CARGO {
  height: 56px;
  padding-left: 20px !important;
  border: 1px solid #bdbdbd !important;
  border-radius: var(--border-radius) !important;
  display: block;
  width: 100%;
}

#QUANTIDADE_FUNCIONARIOS {
  height: 56px;
  padding-left: 20px !important;
  border: 1px solid #bdbdbd !important;
  border-radius: var(--border-radius) !important;
  display: block;
  width: 100%;
}

#SEGMENTO_EMPESA {
  height: 56px;
  padding-left: 20px !important;
  border: 1px solid #bdbdbd !important;
  border-radius: var(--border-radius) !important;
  display: block;
  width: 100%;
}

#mc-embedded-subscribe {
  display: inline-block;
  margin: 0;
}

.btnmce {
  border: none;
  margin: 0;
  text-transform: uppercase;
  border: none !important;
  width: 300px;
  font-weight: 600;
  color: #fff;
  border-radius: var(--border-radius);
  background-color: var(--btn-color);
  padding: 14px;
  width: 80% !important;
}

.btnmce:hover {
  transition: ease-in-out .3s;
  background-color: #ff5866;
}

/*end form*/

.subscribe .btn-get-started {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  width: 325px;
  transition: 0.5s;
  color: var(--color-white);
  background-color: var(--btn-color);
  font-family: var(--font-secondary);
}
.subscribe .btn-get-started:hover {
  background-color: #ff5866;
}

/*end form*/

@media (max-width: 640px) {
  .subscribe h2 {
    font-size: 32px;
  }
  .subscribe p {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Section Five
--------------------------------------------------------------*/

.section-five-column {
  max-width: 400px;
}
.section-five-margem {
  margin-left: 80px;
}

.section-five .titleTwo {
  font-size: 2rem;
  color: var(--color-title);
  font-weight: 700;
  margin-bottom: 50px;
}

@media (max-width: 640px) {

  .section-five > div > div > div {
    flex-direction: column;
  }
  .img-mobile {
    width: 330px;
    margin-bottom: 30px;
  }
  .section-five-margem {
    margin: 0 10px;
  }
}

/*--------------------------------------------------------------
# Section Six
--------------------------------------------------------------*/

.giftpass-box {
  position: relative;
}

.giftpass-box::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 0;

  width: 100%;
  height: 500px;

  border-radius: 4px;
  background: #FAFBFC;
  /* padding: 20px; */
  z-index: -1;
}

.box-beneficios {
  width: 200px;
  padding: 6px 12px;
  border-radius: 32px;
  background: #4C7EE0;
  font-size: 12px;
}

.box-beneficios > p {
  font-weight: 500;
  line-height: 150%;
  color: #F7F7F7;
}

.box-beneficios > img {
  height: 20px;
  width: 20px;
}

.giftpass-title {
  margin-top: 20px;
  font-size: 2rem;
  color: var(--color-title);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .giftpass-box::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 0;
  
    width: 100%;
    height: 500px;
  
    border-radius: 4px;
    background: transparent;
    /* padding: 20px; */
    z-index: -1;
  }
}

@media (max-width: 600px) {
  .giftpass-img {
    width: 100%;
  }
  .giftpass-box-img {
    margin-top: 40px;
  }
}
/*--------------------------------------------------------------
# Success
--------------------------------------------------------------*/
.success {
  width: 100%;
  min-height: 50vh;
  background-size: cover;
  position: relative;
  padding: 80px 0 60px;
}

.success h1 {
  font-size: 2rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  max-width: 80%;
  color:var(--color-bluec);
}
.subtile{
  font-size: 1rem !important;
  color: #ADB5BD !important;
}

.success img {
  margin-bottom: 40px;
}
.success p {
  color: #868E96;
  margin: 0 0 30px 0;
  max-width: 70%;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-paragraph);
}

.success .btn-get-started {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  padding: 18px 0;
  border: 2px solid var(--btn-color);
  border-radius: var(--border-radius);
  width: 360px;
  transition: 0.6s;
  color: var(--btn-color);
  background-color: transparent;
  font-family: var(--font-secondary);
}

.logo-m {
  margin-left: 100px;
}

.success .btn-get-started:hover {
  transition: ease 0.6s;
  background-color: var(--btn-color);
  color: #fff;
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .success h2 {
    font-size: 32px;
  }
  .success p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  #mc_embed_signup {
    width: 100% !important;
  }
  
  .me-auto-new {
    margin: auto!important;
  }
  
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  width: 100%;
  min-height: 50vh;
  background: url("../images/img-footer.png") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 0 60px;
}
.footer div > h1 {
  margin-top: 40px;
  max-width: 70%;
  font-size: 2rem;
  color: #F8F9FA;
  font-weight: 700;
}
.footer div > p {
  margin-bottom: 40px !important;
  margin: 15px 0;
  max-width: 100%;
  color: #E9ECEF;
}
.fcontentTwo {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
}
.fcontentTwo_item3 > p > a {
  transition: ease 0.2s;
}
.fcontentTwo_item3 > p > a:hover{
  color: #FF4253 !important;
}

@media (max-width: 960px) {
  .fcontentTwo {
    gap: 0;
  }
}
.fcontentTwo p {
  color: #868E96 !important;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: justify !important;
}
.fcontentTwo p a{
  color: #868E96 !important;
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: justify !important;
}

.btnmce {
  border: none;
  margin: 32px !important;
}

@media (max-width: 950px) {
  .fcontentTwo {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 640px) {

  .footer h2 {
    font-size: 32px;
  }
  .footer p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .fcontentTwo {
    display: flex;
    flex-direction: column;
  }
  .fcontentTwo  > .fcontentTwo_item1{
    margin-bottom: 20px !important;
  }
  .fcontentTwo  > .fcontentTwo_item1 p{
    font-size: 14px !important;
  }
  .fcontentTwo  > .fcontentTwo_item2 p {
    font-size: 14px !important;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
