/*
  ****
  *
  * |-> Breakpoints
  *
  ********/
:root {
  --primary-color: #ed6332;
  --default-color: #521900;
  --primary-font: "Raleway", sans-serif;
  --default-font: "Work Sans", sans-serif;
  --secondary-font: "Raleway Heavy", sans-serif;
  --text-color: #343434;
  --text-color-white: #fff;
}

/**
 *
 * General Styles
 *
 ***/
* {
  box-sizing: border-box;
  outline: 0;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--primary-font);
  color: var(--text-color);
}

.sections {
  padding-bottom: 1px;
}
.sections > div:last-child {
  margin-bottom: 115px;
}
@media screen and (max-width: 1199px) {
  .sections > div:last-child {
    margin-bottom: 146px;
  }
}
@media screen and (max-width: 991px) {
  .sections > div:last-child {
    margin-bottom: 131px;
  }
}
@media screen and (max-width: 767px) {
  .sections {
    padding-bottom: 0;
  }
  .sections > div:last-child {
    margin-bottom: 0;
  }
}

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

ul {
  list-style-type: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media screen and (max-width: 1199px) {
  body {
    font-size: 16px;
    line-height: 25px;
  }
}
/**
 *
 * General Classes
 *
 ***/
.max__width {
  max-width: 1300px;
  margin: auto;
  width: calc(100% - 30px);
}

.m-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-auto {
  margin-top: auto;
  margin-bottom: 0;
}

.down-arrow {
  text-align: center;
}
.down-arrow .arrow {
  height: 25px;
}

.clickHeader {
  cursor: pointer;
}

.mt-15 {
  margin-top: 15px;
}

.d-flex {
  display: flex;
}

.jc-space-b {
  justify-content: space-between;
}

.jc-space-a {
  justify-content: space-around;
}

.jc-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.f-wrap {
  flex-wrap: wrap;
}

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

.text-right {
  text-align: right;
}

/*
 ****
 *
 * |-> Headings
 *
*******/
.h1 {
  font-family: var(--primary-font);
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}

.h2 {
  font-size: 60px;
  line-height: 75px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  margin-bottom: 45px;
}

.h3 {
  color: var(--default-color);
  font-size: 27px;
  line-height: 37px;
  font-weight: 500;
}

.h4 {
  font-size: 18px;
  line-height: 26px;
  font-family: var(--secondary-font);
  color: var(--primary-color);
  margin: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 1299px) {
  .h2 {
    font-size: 50px;
    line-height: 65px;
  }
}
@media screen and (max-width: 1199px) {
  .h2 {
    font-size: 43px;
    line-height: 53px;
  }
  .h3 {
    font-size: 23px;
    line-height: 29px;
  }
  .h4 {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .h1 {
    font-size: 34px;
    line-height: 42px;
  }
  .h2 {
    font-size: 35px;
    line-height: 45px;
  }
  .h3 {
    font-size: 19px;
    line-height: 23px;
  }
}
@media screen and (max-width: 480px) {
  .h1 {
    max-width: 200px;
  }
}
/*
 ****
 *
 * |-> Buttons
 *
*******/
.button {
  height: 60px;
  border-radius: 60px;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 60px 0 20px;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  inline-size: -webkit-max-content;
  inline-size: -moz-max-content;
  inline-size: max-content;
  position: relative;
}
.button:hover {
  -webkit-animation: bounce 0.5s ease-in-out;
          animation: bounce 0.5s ease-in-out;
}
.button.button-trans {
  border: 2px solid #fff;
  background-color: transparent;
  background-image: none;
  padding: 0 30px;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
}
.button.button-trans::after {
  display: none;
}
@-webkit-keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes star {
  0% {
    transform: translateY(-50%) scale(0.1);
  }
  25% {
    transform: translateY(-50%) scale(1);
  }
  30% {
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
  75% {
    transform: translateY(-50%) scale(0.6);
  }
  90% {
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
  100% {
    transform: translateY(-50%) scale(0.1);
  }
}
@keyframes star {
  0% {
    transform: translateY(-50%) scale(0.1);
  }
  25% {
    transform: translateY(-50%) scale(1);
  }
  30% {
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
  50% {
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
  75% {
    transform: translateY(-50%) scale(0.6);
  }
  90% {
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
  100% {
    transform: translateY(-50%) scale(0.1);
  }
}
.button:after {
  content: "";
  position: absolute;
  right: 17px;
  width: 30px;
  height: 30px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/star.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: center;
  -webkit-animation: star 10s ease-in-out infinite;
          animation: star 10s ease-in-out infinite;
}
.button.delay-1::after {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
.button.delay::after {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
}

.button-form {
  height: 60px;
  border-radius: 8px;
  border: 2px solid var(--default-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  inline-size: -webkit-max-content;
  inline-size: -moz-max-content;
  inline-size: max-content;
  padding: 0 20px;
  font-size: 30px;
  font-weight: 500;
  font-family: var(--default-font);
  color: var(--default-color);
  transition: all 0.3s ease-in-out;
}
.button-form:hover, .button-form.on {
  background-color: var(--default-color);
  color: #fff;
}

input {
  height: 60px;
  border-radius: 8px;
  border: 2px solid var(--default-color);
  text-align: left;
  width: 155px;
  padding: 0 10px;
  font-size: 26px;
  color: var(--default-color);
  font-weight: 500;
  font-family: var(--default-font);
}
input::-moz-placeholder {
  color: var(--default-color);
  font-size: 15px;
}
input:-ms-input-placeholder {
  color: var(--default-color);
  font-size: 15px;
}
input::placeholder {
  color: var(--default-color);
  font-size: 15px;
}

@media screen and (max-width: 991px) {
  .button {
    height: 45px;
  }
  .button-form {
    height: 45px;
    padding: 0 14px;
    font-size: 20px;
  }
  input {
    height: 45px;
  }
}
@media screen and (max-width: 480px) {
  .button {
    height: 60px;
    padding: 0 80px 0 40px;
  }
}
/*
 ****
 *
 * |-> Header
 *
*******/
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-right: 100px;
  padding-top: 40px;
  z-index: 1025;
  display: flex;
  justify-content: space-between;
}
.header .brand img {
  height: 70px;
}
@media screen and (max-width: 991px) {
  .header {
    padding-right: 15px;
  }
  .header .brand img {
    height: 55px;
  }
}
@media screen and (max-width: 767px) {
  .header > div:last-child {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.07);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
  }
}

/*
 ****
 *
 * |-> Top page
 *
*******/
.top-page {
  height: calc(100vh - 115px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 110px;
  z-index: 1001;
}
.top-page:before {
  content: "";
  background-image: url(../images/header.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 300px);
  height: calc(100% + 150px);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.top-page > div {
  position: relative;
  z-index: 5;
  width: 100%;
}
.top-page .top-text {
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
  color: #fff;
  max-width: 585px;
}
.top-page .top-text-org {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--primary-color);
  max-width: 550px;
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .top-page {
    height: calc(100vh - 146px);
  }
}
@media screen and (max-width: 991px) {
  .top-page {
    height: calc(100vh - 131px);
  }
  .top-page .top-text {
    font-size: 21px;
    line-height: 35px;
    max-width: 435px;
  }
  .top-page .top-text-org {
    font-size: 18px;
    line-height: 26px;
    max-width: 470px;
  }
}
@media screen and (max-width: 767px) {
  .top-page {
    padding-bottom: 30px;
    align-items: flex-end;
    height: 100vh;
    min-height: 650px;
  }
  .top-page:before {
    background-image: url(../images/header-mob.jpg);
    background-position: top center;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 480px) {
  .top-page .top-text {
    font-size: 20px;
    line-height: 30px;
    max-width: 280px;
  }
  .top-page .top-text-org {
    font-size: 15px;
    line-height: 26px;
    max-width: 290px;
  }
}

/*
 ****
 *
 * |-> Don Form
 *
*******/
.don-form {
  padding: 20px 0 0;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: calc(100% - 115px);
  z-index: 1000;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.07);
}
.don-form .txt {
  font-size: 18px;
  line-height: 31px;
  font-weight: bold;
  color: var(--default-color);
  max-width: 320px;
}
.don-form .buttons {
  margin: 0 20px 0 auto;
}
.don-form .buttons > div:first-child {
  display: flex;
  align-items: center;
  gap: 20px;
}
.don-form .buttons .reduction {
  font-size: 14px;
  font-weight: 400;
  line-height: 35px;
}
.don-form .wrap-don {
  justify-content: space-between;
}
@media screen and (max-width: 1299px) {
  .don-form .txt {
    font-size: 15px;
  }
}
@media screen and (max-width: 1199px) {
  .don-form {
    top: calc(100% - 146px);
  }
  .don-form .wrap-don {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .don-form .buttons {
    margin: 0;
  }
  .don-form .txt {
    max-width: none;
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .don-form {
    top: calc(100% - 131px);
  }
  .don-form .buttons .reduction {
    font-size: 12px;
  }
  .don-form .buttons > div:first-child {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .don-form {
    position: static;
  }
  .don-form .wrap-don > div {
    width: 100%;
  }
  .don-form .buttons > div:first-child {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10.4px;
  }
  .don-form .buttons > div .button-form {
    width: 30.93%;
  }
  .don-form .buttons > div input {
    flex: 1;
  }
  .don-form .buttons .reduction {
    font-size: 11px;
    line-height: 16px;
    padding: 15px 0;
  }
  .don-form .txt {
    font-size: 13px;
    text-align: center;
    margin-bottom: 6px;
  }
  .don-form .button {
    margin: auto;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .don-form .txt {
    max-width: 230px;
    margin: 0 auto 17px;
    line-height: 22px;
  }
}

/*
 ****
 *
 * |-> Maroon Bloc
 *
*******/
.maroonBloc {
  background-color: var(--default-color);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-content: center;
  font-family: "Raleway", sans-serif;
  margin-top: -115px;
  padding-top: 70px;
  padding-bottom: 30px;
}
.maroonBloc .Mbloc {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 0 10px;
}
.maroonBloc .Mbloc .txt-content {
  margin-bottom: 35px;
}
.maroonBloc .Mbloc .txt-content p {
  font-size: 24px;
  line-height: 36px;
  margin: 0;
  margin-bottom: 10px;
}
.maroonBloc .Mbloc .down-arrow {
  margin-top: 30px;
}
@media screen and (max-width: 1299px) {
  .maroonBloc .Mbloc .txt-content p {
    font-size: 21px;
    line-height: 32px;
  }
}
@media screen and (max-width: 1199px) {
  .maroonBloc {
    margin-top: -146px;
  }
  .maroonBloc .Mbloc .txt-content {
    font-size: 21px;
    line-height: 30px;
  }
  .maroonBloc .Mbloc .txt-content p {
    font-size: 18px;
    line-height: 27px;
  }
  .maroonBloc .Mbloc .down-arrow .arrow {
    max-width: 40px;
  }
  .maroonBloc .Mbloc .primary-button {
    min-height: 65px;
    width: 300px;
    font-size: 20px;
    line-height: 35px;
  }
}
@media screen and (max-width: 991px) {
  .maroonBloc {
    margin-top: -131px;
  }
  .maroonBloc .Mbloc .txt-content {
    font-size: 17px;
    line-height: 30px;
  }
  .maroonBloc .Mbloc .txt-content p {
    font-size: 16px;
    line-height: 25px;
  }
  .maroonBloc .Mbloc .primary-button {
    min-height: 65px;
    width: 300px;
    font-size: 16px;
    line-height: 35px;
    margin: 50px;
  }
  .maroonBloc .Mbloc .down-arrow .arrow {
    max-width: 35px;
  }
}
@media screen and (max-width: 767px) {
  .maroonBloc {
    margin-top: 0;
  }
  .maroonBloc .Mbloc {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .maroonBloc {
    padding-bottom: 20px;
  }
  .maroonBloc .Mbloc {
    text-align: left;
  }
  .maroonBloc .Mbloc .txt-content {
    font-size: 17px;
    line-height: 30px;
  }
  .maroonBloc .Mbloc .primary-button {
    min-height: 55px;
    width: 300px;
    font-size: 16px;
    line-height: 35px;
    margin: 50px;
  }
  .maroonBloc .Mbloc .down-arrow {
    padding-top: 0px;
    margin-top: 20px;
  }
  .maroonBloc .Mbloc .down-arrow .arrow {
    max-width: 30px;
  }
}

/*
 ****
 *
 * |-> Text With Image
 *
*******/
.text-with-image {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 65px;
  padding-bottom: 30px;
}
.text-with-image .block-title {
  text-align: center;
}
.text-with-image .block-title .h2 {
  color: var(--primary-color);
  margin-bottom: 5px;
}
.text-with-image .b-content {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 45px 0 0;
}
.text-with-image .b-content .img-holder {
  order: 2;
  width: 50%;
}
.text-with-image .b-content .img-holder .big-img {
  width: 100%;
  height: auto;
  max-width: 580px;
  margin: 0 0 0 auto;
  display: block;
}
.text-with-image .b-content .txt-content {
  margin-right: 50px;
  max-width: 600px;
  width: 50%;
  height: auto;
  order: 1;
}
.text-with-image .b-content .txt-content .entry-title {
  color: var(--primary-color);
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-size: 24px;
}
.text-with-image .b-content .txt-content .entry-subtitle {
  color: var(--default-color);
  font-size: 45px;
  line-height: 53px;
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 20px;
  max-width: 460px;
}
.text-with-image .b-content .txt-content .text {
  max-width: 505px;
  margin-bottom: 40px;
}
.text-with-image .down-arrow {
  margin-top: 70px;
}
@media screen and (max-width: 1299px) {
  .text-with-image .b-content .txt-content .entry-subtitle {
    font-size: 41px;
    line-height: 44px;
    max-width: 430px;
  }
}
@media screen and (max-width: 1199px) {
  .text-with-image .b-content .txt-content {
    margin-right: 12px;
  }
  .text-with-image .b-content .txt-content .entry-title {
    font-size: 19px;
  }
  .text-with-image .b-content .txt-content .entry-subtitle {
    font-size: 31px;
    line-height: 34px;
    max-width: 320px;
  }
}
@media screen and (max-width: 991px) {
  .text-with-image .block-title .sub-title {
    font-size: 20px;
    line-height: 28px;
  }
  .text-with-image .b-content {
    flex-direction: column-reverse;
  }
  .text-with-image .b-content .img-holder {
    margin: 0;
    max-width: none;
    width: 100%;
  }
  .text-with-image .b-content .img-holder .big-img {
    max-width: none;
    height: 60vw;
    border-radius: 60px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
    margin-bottom: 30px;
  }
  .text-with-image .b-content .txt-content {
    margin-right: 10px;
    max-width: none;
    width: 100%;
  }
  .text-with-image .b-content .txt-content .text {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .text-with-image .b-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .text-with-image .b-content .img-holder {
    order: 1;
    margin-bottom: 30px;
  }
  .text-with-image .b-content .txt-content {
    order: 2;
    margin-right: 10px;
  }
  .text-with-image .b-content .txt-content .entry-subtitle {
    max-width: 280px;
  }
}
@media screen and (max-width: 480px) {
  .text-with-image {
    padding-bottom: 20px;
  }
  .text-with-image .b-content .img-holder {
    order: 1;
    margin-bottom: 30px;
  }
  .text-with-image .b-content .img-holder .big-img {
    border-radius: 30px;
  }
  .text-with-image .b-content .txt-content {
    order: 2;
    max-width: 400;
  }
  .text-with-image .h3 {
    max-width: 280px;
    margin: auto;
    margin-top: 30px;
  }
}
.text-with-image .down-arrow {
  margin-top: 30px;
}

/*
 ****
 *
 * |-> Boxes
 *
*******/
.two-boxes {
  background-color: var(--default-color);
  padding-top: 70px;
  padding-bottom: 30px;
}
.two-boxes .box {
  background-color: #fff;
  border-radius: 60px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
}
.two-boxes .box .h3 {
  min-height: 74px;
}
.two-boxes ._uatx {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.two-boxes ._uatx .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.two-boxes ._uatx .avatar img {
  width: 100%;
  height: 100%;
}
.two-boxes ._uatx .av-text {
  flex: 1;
}
.two-boxes .txtToHide {
  margin-bottom: 15px;
}
.two-boxes .txtToHide ._cnt {
  display: none;
  margin-top: 20px;
}
.two-boxes .txtToHide.on .toggle {
  position: relative;
}
.two-boxes .txtToHide.on .toggle ._tgltxt {
  display: none;
}
.two-boxes .txtToHide.on .toggle .arrow {
  display: block;
  transform: scale(-1);
}
.two-boxes .txtToHide .toggle {
  text-align: right;
  min-height: 35px;
  position: relative;
}
.two-boxes .txtToHide .toggle ._tgltxt {
  text-decoration: underline;
  display: inline-block;
  margin-top: 7px;
}
.two-boxes .txtToHide .toggle .arrow {
  display: none;
  position: absolute;
  right: 0;
  top: 65px;
}
.two-boxes .down-arrow {
  margin-top: 30px;
}
.two-boxes ._rw {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.two-boxes ._rw ._cl {
  width: 50%;
  max-width: 590px;
}
@media screen and (max-width: 1199px) {
  .two-boxes .box {
    padding: 30px;
  }
  .two-boxes .box .h3 {
    min-height: 58px;
  }
}
@media screen and (max-width: 991px) {
  .two-boxes ._rw {
    flex-direction: column;
    align-items: center;
  }
  .two-boxes ._rw ._cl {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .two-boxes {
    padding-top: 50px;
  }
  .two-boxes .box {
    padding: 30px 20px;
    border-radius: 45px;
  }
  .two-boxes .box.on {
    padding: 30px 20px 70px;
  }
  .two-boxes .txtToHide .toggle .arrow {
    right: 50%;
    top: 135px;
  }
  .two-boxes .txtToHide.on .toggle .arrow {
    transform: translateX(50%) scale(-1);
  }
  .two-boxes ._uatx {
    flex-direction: column;
  }
  .two-boxes ._uatx .avatar {
    margin-right: 0;
    margin-top: 15px;
    display: none;
  }
}

/*
 ****
 *
 * |-> Chart
 *
*******/
.actions {
  padding-top: 70px;
  padding-bottom: 65px;
}
.actions .h2 {
  color: var(--default-color);
  max-width: 600px;
}
.actions .text {
  max-width: 500px;
  margin-bottom: 30px;
}
.actions .icons {
  max-width: 500px;
}
.actions .icons li {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
}
.actions .icons li:last-child {
  margin-bottom: 0;
}
.actions .icons li ._tt {
  flex: 1;
}
.actions .icons li .avatar {
  width: 70px;
  height: 70px;
  margin-right: 30px;
}
.actions .icons li .avatar img {
  width: 100%;
}
.actions .box {
  background-color: var(--primary-color);
  border-radius: 60px;
  padding: 35px 40px;
  text-align: center;
  color: #fff;
}
.actions .box .chart-title {
  font-family: var(--primary-font);
  line-height: 45px;
  font-size: 37px;
  font-weight: bold;
}
.actions .box .chart-text {
  line-height: 37px;
  font-size: 27px;
  margin-top: 6px;
  margin-bottom: 30px;
}
.actions .box .chart svg {
  max-width: 100%;
  height: auto;
}
.actions .box ._ft {
  max-width: 530px;
  margin: 15px auto 0;
}
.actions .box ._ft span {
  font-size: 40px;
  font-family: var(--secondary-font);
}
.actions ._rw {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
.actions ._rw ._cl {
  width: 50%;
}
.actions ._rw ._cl:first-child {
  padding-right: 15px;
}
@media screen and (max-width: 991px) {
  .actions {
    padding-bottom: 0;
  }
  .actions .box {
    margin-left: -15px;
    border-radius: 0;
    margin-right: -15px;
    margin-top: 30px;
  }
  .actions ._rw {
    flex-direction: column;
  }
  .actions ._rw ._cl {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .actions {
    text-align: center;
  }
  .actions .icons li {
    flex-direction: column;
  }
  .actions .icons li .avatar {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  .actions ._rw ._cl:first-child {
    padding: 0 9px;
  }
  .actions .box .chart-title {
    font-size: 22px;
  }
  .actions .box .chart-text {
    line-height: 20px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  .actions .box ._ft {
    font-size: 15px;
    line-height: 22px;
  }
  .actions .box ._ft span {
    font-size: 25px;
  }
}

/*
 ****
 *
 * |-> Hands
 *
*******/
.hands {
  background-image: url(../images/hands.png);
  background-size: cover;
  background-position: center;
  padding-top: 55px;
  padding-bottom: 40px;
  color: #fff;
}
.hands .text {
  max-width: 609px;
  margin-bottom: 10px;
}
.hands .text-lg {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .hands {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .hands {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hands .text-lg {
    font-size: 18px;
  }
  .hands .text-lg br {
    display: none;
  }
}

/*
 ****
 *
 * |-> Stars
 *
*******/
.stars {
  background-image: url(../images/green-bg.jpg);
  background-size: cover;
  background-position: center;
  padding-top: 55px;
  padding-bottom: 230px;
  color: #fff;
  overflow-x: hidden;
}
.stars .text {
  max-width: 505px;
  margin-bottom: 30px;
}
.stars .text-lg {
  font-size: 24px;
}
.stars .half {
  max-width: 800px;
}
.stars .org-text {
  text-align: right;
  margin-top: 90px;
}
.stars .org-text span {
  background-color: var(--primary-color);
  padding: 2px 5px;
}
.stars .newsletter label {
  font-weight: 400;
  margin-bottom: 7px;
  display: block;
}
.stars .newsletter input {
  width: 250px;
  border: none;
  border-radius: 0;
  text-align: left;
  margin-right: 20px;
}
.stars .newsletter input::-moz-placeholder {
  color: rgba(93, 93, 93, 0.663);
  font-weight: 400;
}
.stars .newsletter input:-ms-input-placeholder {
  color: rgba(93, 93, 93, 0.663);
  font-weight: 400;
}
.stars .newsletter input::placeholder {
  color: rgba(93, 93, 93, 0.663);
  font-weight: 400;
}
.stars .wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.stars .cross {
  width: 800px;
  margin-left: -10%;
}
.stars .half {
  max-width: 800px;
  width: 100%;
}
.stars .lign.start .col-4-center {
  height: 200px;
  width: 33.3%;
  margin: 0 auto;
  position: relative;
}
.stars .lign.start .col-12-center {
  height: 200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1299px) {
  .stars .half {
    max-width: 650px;
  }
}
@media screen and (max-width: 1199px) {
  .stars .half {
    max-width: 550px;
  }
}
@media screen and (max-width: 991px) {
  .stars .wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .stars .half {
    max-width: 400px;
  }
  .stars .org-text {
    text-align: center;
    margin-top: 64px;
  }
  .stars .cross {
    width: 100%;
    margin: 0 auto 19px auto;
    position: relative;
  }
  .stars .lign.start .col-4-center,
.stars .lign.start .col-12-center {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .stars {
    text-align: center;
    padding-bottom: 30px;
  }
  .stars ._winp {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .stars ._winp input {
    width: 100%;
    max-width: 320px;
    margin: 0;
  }
  .stars .half {
    max-width: none;
  }
}
@media screen and (max-width: 480px) {
  .stars {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .stars .text-lg {
    font-size: 18px;
  }
  .stars .text-lg br {
    display: none;
  }
}

/*
 ****
 *
 * |-> Statistiques
 *
*******/
._stcs {
  background-color: var(--primary-color);
  padding-top: 35px;
  padding-bottom: 30px;
  text-align: center;
  color: #fff;
}
._stcs .h2 {
  margin: 7px;
  font-family: var(--default-font);
}
._stcs ._rw {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
._stcs ._rw ._cl {
  width: 33.33%;
}
@media screen and (max-width: 767px) {
  ._stcs .text br {
    display: none;
  }
  ._stcs ._rw {
    gap: 0;
  }
}
@media screen and (max-width: 480px) {
  ._stcs {
    padding-bottom: 40px;
  }
  ._stcs ._rw .slick-prev,
._stcs ._rw .slick-next {
    width: 15px;
    height: 15px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  ._stcs ._rw .slick-prev:before,
._stcs ._rw .slick-next:before {
    display: none;
  }
  ._stcs ._rw .slick-prev {
    left: 0;
    transform: rotate(135deg);
  }
  ._stcs ._rw .slick-next {
    right: 0;
    transform: rotate(-45deg);
  }
  ._stcs ._rw ._cl {
    padding: 0 30px;
  }
}

.footer {
  background-color: var(--default-color);
  padding-top: 50px;
  padding-bottom: 65px;
  color: #fff;
  font-size: 14px;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer .footer-logo {
  margin-bottom: 10px;
  margin-top: 10px;
}
.footer .copyright {
  margin-top: 15px;
}
.footer ._rw {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.footer ._rw ._cl {
  width: 33.33%;
}
@media screen and (max-width: 991px) {
  .footer ._rw {
    align-items: center;
  }
  .footer ._rw ._cl {
    width: 45%;
  }
  .footer ._rw ._cl:nth-child(2) {
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .footer ._rw {
    flex-direction: column;
    gap: 30px;
  }
  .footer ._rw ._cl {
    width: 100%;
    text-align: center;
  }
}

.svgAreaEtoile {
  position: absolute;
  pointer-events: none;
  width: 50px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svgAreaEtoile img {
  -webkit-animation: startFlickr 8s infinite linear;
          animation: startFlickr 8s infinite linear;
  width: 100%;
  height: auto;
}
.svgAreaEtoile img.active {
  width: 57px !important;
  transform: scale(1.9) !important;
  -webkit-animation: startFlickr 1s infinite linear !important;
          animation: startFlickr 1s infinite linear !important;
}
@media screen and (max-width: 991px) {
  .svgAreaEtoile .svgAreaEtoile {
    width: 20px !important;
    height: 29px !important;
  }
}

@-webkit-keyframes startFlickr {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes startFlickr {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */