/* 
Theme name: Dogs
*/

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Noto+Sans+Thai:wght@400;500&family=Pacifico&display=swap");
body {
  font-family: "Noto Sans Thai", sans-serif;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  background-color: #ff6b00;
}

.container {
  max-width: 1740px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (min-width: 1800px) {
  .minw1800 {
    display: none;
  }

}

@media (max-width: 1800px) {
  nav.menu__nav {
    margin-right: 0px;
  }
  .container {
    padding: 0 80px;
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 40px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
@media (max-width: 1200px) {
  p {
    line-height: 28px;
  }
}

a {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
}

.title {
  font-size: 60px;
  line-height: 90px;
  text-transform: uppercase;
}
@media (max-width: 1650px) {
  .title {
    line-height: 65px;
    font-size: 55px;
  }
}
@media (max-width: 1500px) {
  .title {
    line-height: 60px;
    font-size: 50px;
  }
}
@media (max-width: 1300px) {
  .title {
    line-height: 55px;
    font-size: 45px;
  }
}
@media (max-width: 1200px) {
  .title {
    font-size: 43px;
  }
}
@media (max-width: 768px) {
  .title {
    line-height: 45px;
    font-size: 35px;
  }
}

.subtitle {
  display: block;
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .subtitle {
    line-height: 27px;
    font-size: 18px;
  }
}

.description {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
@media (max-width: 1200px) {
  .description {
    line-height: 28px;
  }
}

.btn {
  font-weight: 400;
  font-size: 16px;
  color: #1c1c1c;
  text-transform: uppercase;
  padding: 25px 10px;
  text-align: center;
  transition: all 0.5s ease;
  background: #f0c6b6;
  border-radius: 20px;
}
.btn:hover {
  text-shadow: 0 0 0.9px #1c1c1c, 0 0 0.9px #1c1c1c;
  background: #ffffff;
  transition: all 0.5s ease;
}
@media (max-width: 576px) {
  .btn {
    font-size: 14px;
  }
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a,
a:link,
a:visited {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

.header {
  padding-top: 10px;
  padding-bottom: 60px;
  background: url("../img/icons/heart.svg") no-repeat top 100% left 20%,
    url("../img/icons/circle.svg") no-repeat top 100% right -10%;
  overflow: hidden;
}
@media (max-width: 1700px) {
  .header {
    background: none;
  }
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__logo {
  margin-right: 50px;
}

.menu__logo a img {
  max-width: 270px;
  width: 100%;
}

.menu__nav {
  margin-right: auto;
  margin-left: auto;
  background: #b64c00;
  border-radius: 15px 50px;
  padding: 15px 30px 30px 30px;
}
@media (max-width: 1400px) {
  .menu__nav {
    display: none;
    position: absolute;
    background: #b64c00;
    border-radius: 15px 50px;
    width: auto;
    color: #333;
    top: 15%;
    right: 0;
    padding: 50px 100px;
    transition: all 0.2s ease;
    z-index: 5;
  }
  .menu__nav ul {
    display: block;
  }
  .menu__nav ul li {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .menu__nav {
    width: 100%;
    top: 12%;
    padding: 30px 20px;
  }
}

@media (max-width: 1400px) {
  .menu__nav.show {
    display: block;
  }
}

.menu__nav-list {
  display: flex;
}

.close_btn {
  display: none;
  position: absolute;
  top: 7%;
  right: 7%;
  width: 21px;
  height: 21px;
  background: url("../../img/icons/close.svg") no-repeat center;
  padding: 20px;
}
@media (max-width: 1400px) {
  .close_btn {
    display: block;
  }
}

.menu__nav-item {
  position: relative;
  padding: 15px 10px;
  background: transparent;
  border-radius: 15px 50px;
  transition: all 0.5s ease;
}
.menu__nav-item::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -15px;
  width: 8px;
  height: 9px;
  background: url("../../img/icons/heart-active.svg") no-repeat;
  margin: auto;
  opacity: 0;
}
.menu__nav-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
}
.menu__nav-item:not(:last-child) {
  margin-right: 25px;
}

.menu__nav-item:hover:after {
  opacity: 1;
}

.menu__help {
  margin-left: 75px;
}
@media (max-width: 1800px) {
  .menu__help {
    display: none;
  }
}

.menu__help-btn {
  width: 190px;
}
.menu__help-btn:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .menu__help-btn {
    width: 100%;
  }
}

.help-btn_hidden {
  display: none;
}
@media (max-width: 1700px) {
  .help-btn_hidden {
    display: block;
  }
}

.offer {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1300px) {
  .offer {
    align-items: center;
  }
}
@media (max-width: 1200px) {
  .offer {
    flex-direction: column;
  }
}

.offer__btn {
  display: flex;
}

.offer__info {
  width: 650px;
  max-width: 100%;
  margin-top: 100px;
}
@media (max-width: 1700px) {
  .offer__info {
    margin-right: 100px;
  }
}
@media (max-width: 1400px) {
  .offer__info {
    margin-right: 60px;
  }
}
@media (max-width: 1300px) {
  .offer__info {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .offer__info {
    order: 2;
    width: 100%;
    margin-right: 0;
  }
}

.offer__info-title {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .offer__info-title {
    margin-bottom: 5px;
  }
}

.offer__info-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .offer__info-subtitle {
    margin-bottom: 5px;
  }
}

.offer__img {
  margin: 0 calc(-50vw + 50%);
}
.offer__img img {
  width: 1025px;
  max-width: 100%;
}
@media (max-width: 1200px) {
  .offer__img img {
    width: 1200px;
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .offer__img {
    order: 1;
    margin-bottom: 50px;
  }
}

.offer__info-description {
  margin-bottom: 30px;
}

.menu__mobile_btn {
  display: none;
  align-items: center;
  padding: 30px 40px;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px 50px;
}
.menu__mobile_btn::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 12px;
  background: url("../../img/icons/burger.svg");
  margin-left: 10px;
}
@media (max-width: 1400px) {
  .menu__mobile_btn {
    display: flex;
  }
}
@media (max-width: 768px) {
  .menu__mobile_btn {
    padding: 13px 15px;
  }
}

.donat {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .donat {
    padding-top: 0;
  }
}

.donat__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .donat__title {
    margin-bottom: 5px;
  }
}

.donat__subtitle {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 576px) {
  .donat__subtitle {
    margin-bottom: 20px;
  }
}

.donat__forms {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 1300px) {
  .donat__forms {
    flex-direction: column;
    align-items: center;
  }
}

.form,
.wpcf7 {
  max-width: 725px;
  width: 100%;
  padding: 35px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 35px;
}
@media (max-width: 1500px) {
  .form {
    padding: 35px;
  }
}

.donat__form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 50px;
}
@media (max-width: 1300px) {
  .donat__form {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.form-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .form-title {
    font-size: 25px;
    line-height: 38px;
  }
}

.form-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .form-wrapper {
    display: block;
  }
}

.form-input {
  width: 100%;
  text-transform: unset;
  font-size: 16px;
  color: #1c1c1c;
  background: #f0c6b6;
  border-radius: 30px;
  padding: 20px 0 20px 35px;
  margin-bottom: 25px;
}

.wpcf7-form-control-wrap:not(:last-child) {
  margin-right: 25px;
}

.checkbox-wrapper {
  display: block;
  align-items: center;
  justify-content: center;
}

.offer-checkbox-subscribe,
.checkbox-subscribe {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.offer-checkbox-subscribe + label .checkbox-subscribe + label {
  align-items: center;
  user-select: none;
}

.offer-checkbox-subscribe + label::before,
.checkbox-subscribe + label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 15px;
  flex-shrink: 0;
  flex-grow: 0;
  background: #d9d9d9;
  border-radius: 5px;
  margin-right: 0.5em;
  background-repeat: no-repeat;
  background-position: center center;
}

.offer-checkbox-subscribe:checked + label::before,
.checkbox-subscribe:checked + label::before {
  background-color: #f9591c;
  background-image: url("../../img/icons/checkbox.svg");
}

.offer-form-label,
.form-label,
.wpcf7-list-item label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 170%;
}

.form-agreement {
  font-family: "Noto Sans Thai", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: unset;
  transition: all 0.5s ease;
}
.form-agreement:hover {
  color: #fff;
  transition: all 0.5s ease;
}

.form-btn {
  display: block;
  font-family: "Montserrat";
  width: 275px;
  max-width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #1c1c1c;
  text-transform: unset;
  padding: 22px 60px;
  text-align: center;
  transition: all 0.5s ease;
  background: #f0c6b6;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  margin-top: 15px;
}
.form-btn:hover {
  text-shadow: 0 0 0.9px #1c1c1c, 0 0 0.9px #1c1c1c;
  background: #ffffff;
  transition: all 0.5s ease;
}
@media (max-width: 1300px) {
  .form-btn {
    width: 100%;
  }
}

.form-text {
  margin-bottom: 15px;
}

.help {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .help {
    padding-top: 10px;
  }
}

.help__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .help__title {
    margin-bottom: 5px;
  }
}

.help__subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.animal-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media (max-width: 1400px) {
  .animal-list {
    justify-content: space-around;
  }
}

.help__cards-list {
  row-gap: 90px;
}
@media (max-width: 1200px) {
  .help__cards-list {
    row-gap: 20px;
  }
}

.card {
  position: relative;
  max-width: 475px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  cursor: pointer;
  width: 31%;
}

@media (max-width: 1720px) {
  .card {
    margin-right: 0;
  }
}

@media (max-width: 1200px) {
  .card {
  	width: 48%;
  }
}



@media (max-width: 768px) {
  .card {
    width: 100%;
  }
}

.card-img {
	height: 370px;
	display: flex;
	align-items: end;
}

@media (max-width: 1600px) {
  .card-img {
	height: 320px;
  }
}

@media (max-width: 1500px) {
  .card-img {
	height: 280px;
  }
}

@media (max-width: 1400px) {
  .card-img {
	height: 240px;
  }
}

@media (max-width: 1300px) {
  .card-img {
	height: 200px;
  }
}

@media (max-width: 1200px) {
  .card-img {
	height: 240px;
  }
}

@media (max-width: 1000px) {
  .card-img {
    height: 220px;
  }
}

@media (max-width: 900px) {
  .card-img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .card-img {
    width: 100%;
	height: auto;
  }
}



.card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  
  transition: 1s;
  transition: all 0.5s ease;
 
}
@media (max-width: 768px) {
  .card img {
    margin: auto;
	width: 100%;
	height: auto;
  }
}
@media (max-width: 576px) {
  .card img {
    min-height: 1px;
    width: 100%;
  }
}


.card img:hover {
  transform: scale(1.1);
  /* Увеличиваем масштаб */
  transition: all 0.5s ease;
}
.card:nth-child(3n) {
  margin-right: 0;
}
.card:nth-child(3n)::after {
  display: none;
}
.card::after {
  content: "";
  position: absolute;
  display: block;
  top: 30%;
  right: -80px;
  width: 50px;
  height: 50px;
  background: url("../../img/icons/ball.svg") no-repeat center center;
  opacity: 0.9;
}
@media (max-width: 1720px) {
  .card::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .card {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .card {
    padding: 0;
  }
}

.help__cards-info {
  margin-top: 20px;
}

.help__cards-subtitle {
  margin-bottom: 15px;
  text-align: center;
}

.heroes {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .heroes {
    padding-top: 0;
  }
}

.heroes__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .heroes__title {
    margin-bottom: 5px;
  }
}

.heroes__subtitle {
  text-align: center;
  margin-bottom: 30px;
}

.heroes__cards-list img {
  display: block;
  max-width: 280px;
  min-height: 260px;
  margin-bottom: 25px;
  border-radius: 30px;
  object-fit: cover;
}

.heroes__cards-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.heroes__cards-name {
  display: block;
  font-size: 24px;
  margin-bottom: 15px;
  text-align: center;
}

.heroes__cards-city {
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
}

.heroes__cards-description {
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #ffffff;
}

@media (max-width: 576px) {
  .heroes__cards-btn {
    width: 100%;
  }
}

.heroes-btn {
  display: block;
  margin: auto;
}
@media (max-width: 576px) {
  .heroes-btn {
    width: 100%;
  }
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.3);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.custom-prev {
  background: no-repeat center center;
  background-color: rgba(245, 245, 245, 0.75);
  opacity: 0.7;
  transition: all 0.5s ease;
}
.custom-prev:hover {
  opacity: 1;
  transition: all 0.5s ease;
}

.custom-next {
  background: no-repeat center center;
  background-color: rgba(245, 245, 245, 0.75);
  transform: scaleX(-1);
  opacity: 0.7;
  margin-left: 10px;
  transition: all 0.5s ease;
}
.custom-next:hover {
  opacity: 1;
  transition: all 0.5s ease;
}

.swiper-card {
  display: block;
  position: relative;
  margin-bottom: 50px;
}

.swiper-navigation {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .swiper-navigation {
    justify-content: center;
  }
}

.important {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .important {
    padding-top: 0;
  }
}

.important__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .important__title {
    margin-bottom: 5px;
  }
}

.important__subtitle {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 576px) {
  .important__cards-list {
    row-gap: 30px;
  }
}

@media (max-width: 576px) {
  .important__cards-item {
    row-gap: 30px;
  }
}

.important__cards-subtitle {
  margin-bottom: 15px;
  text-align: center;
}

.share {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  .share {
    padding-top: 0;
  }
}

.share__title {
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .share__title {
    margin-bottom: 5px;
  }
}

.share__subtitle {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .share__subtitle {
    margin-bottom: 5px;
  }
}

.share__cards-info {
  margin-top: 20px;
}

.share__cards-subtitle {
  margin-bottom: 15px;
  text-align: center;
}

.trend {
  padding-top: 60px;
  padding-bottom: 50px;
  background: url("../img/icons/heart-left.svg") no-repeat top 100% right -10%;
}
@media (max-width: 1470px) {
  .trend {
    background: none;
  }
}
@media (max-width: 576px) {
  .trend {
    padding-top: 20px;
  }
}

.container-trend {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .container-trend {
    flex-direction: column;
  }
}

.trend__img {
  position: relative;
  display: block;
  margin: auto;
  margin-right: 290px;
}
.trend__img img {
  display: block;
  max-width: 545px;
  z-index: 10;
}
@media (max-width: 1200px) {
  .trend__img img {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 1700px) {
  .trend__img {
    margin-right: 100px;
  }
}
@media (max-width: 1200px) {
  .trend__img {
    width: 100%;
    margin-right: 0;
  }
}

.trend__info {
  max-width: 785px;
}
@media (max-width: 1200px) {
  .trend__info {
    max-width: 100%;
  }
}

.trend__info-title {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .trend__info-title {
    margin-bottom: 5px;
  }
}

.trend__info-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .trend__info-subtitle {
    margin-bottom: 10px;
  }
}

.trend__list {
  margin-left: 20px;
}

.trend__item {
  font-size: 16px;
  line-height: 30px;
  list-style: disc;
  text-transform: uppercase;
}

.trend__item:not(:last-child) {
  margin-bottom: 10px;
}

.footer {
  padding-top: 65px;
}
@media (max-width: 1200px) {
  .footer {
    padding-top: 10px;
  }
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
@media (max-width: 1200px) {
  .footer__wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 890px) {
  .footer__wrapper {
    row-gap: 30px;
    flex-direction: column;
  }
}

.footer__info {
  max-width: 360px;
}

.footer__logo {
  margin-bottom: 15px;
  line-height: 1;
}
.footer__logo a img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

.footer__info-description {
  margin-bottom: 20px;
}

.footer__contacts-title {
  display: block;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer__contacts-item a {
  text-transform: unset;
  opacity: 0.8;
}
.footer__contacts-item a:hover {
  opacity: 1;
}
.footer__contacts-item:not(:last-child) {
  margin-bottom: 15px;
}

.footer__title {
  display: block;
  font-size: 18px;
  margin-bottom: 30px;
}

.footer__item a {
  font-size: 14px;
  text-transform: unset;
  opacity: 0.8;
}
.footer__item a:hover {
  opacity: 1;
}
.footer__item:not(:last-child) {
  margin-bottom: 20px;
}

.footer__bg img {
  width: 890px;
  max-width: 100%;
  display: block;
  margin: auto;
}

.footer-rights {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #fa9700;
}

.container-right {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .container-right {
    display: block;
    text-align: center;
  }
}

.footer-rights__info {
  display: block;
}
@media (max-width: 768px) {
  .footer-rights__info {
    margin-bottom: 20px;
  }
}

.footer-rights__project {
  display: block;
}
@media (max-width: 576px) {
  .footer-rights__project {
    width: 70%;
    text-align: center;
    margin: auto;
    line-height: 40px;
  }
}

.footer__form {
  display: flex;
}
@media (max-width: 1400px) {
  .footer__form {
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .footer__form {
    flex-direction: row;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 890px) {
  .footer__form {
    margin-top: 0;
    flex-direction: column;
  }
}

.footer__form-total_donate {
  margin-right: 20px;
}
@media (max-width: 1400px) {
  .footer__form-total_donate {
    margin-right: 0;
  }
}
@media (max-width: 1200px) {
  .footer__form-total_donate {
    margin-right: 30px;
  }
}
@media (max-width: 576px) {
  .footer__form-total_donate {
    margin-right: 0;
  }
}

.footer-total {
  width: 277px;
  color: #1c1c1c;
  font-size: 16px;
  display: block;
  padding: 26px 23px;
  background: #f0c6b6;
  border-radius: 20px;
}
@media (max-width: 1400px) {
  .footer-total {
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .footer-total {
    width: 100%;
  }
}

.footer__title_form {
  margin-bottom: 15px;
}

/*# sourceMappingURL=style.css.map */

/* checkbox */

.simple-cf7 .wpcf7-acceptance input[type="checkbox"]:checked,
.simple-cf7 .wpcf7-acceptance input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label,
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:not(:checked)
  + .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label:before,
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:not(:checked)
  + .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 18px;
  height: 15px;
  border-radius: 5px;
  background-color: #fff;
}
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label,
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:not(:checked)
  + .wpcf7-list-item-label {
  border-radius: 2px;
  line-height: 170%;
}
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label:after,
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:not(:checked)
  + .wpcf7-list-item-label:after {
  content: "\2714";
  left: 3px;
  top: 1px;
  position: absolute;
  width: 15px;
  height: 8px;
  border-radius: 1px;
  color: black;
}
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:not(:checked)
  + .wpcf7-list-item-label:after {
  opacity: 0;
}
.simple-cf7
  .wpcf7-acceptance
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label:after {
  opacity: 1;
}

.simple-cf7.invalid
  .wpcf7-acceptance
  input[type="checkbox"]:checked
  + .wpcf7-list-item-label:before {
  border-color: #ddd;
}
.simple-cf7 .wpcf7-acceptance label {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1;
}
.screen-reader-response {
  display: none;
}
.wpcf7-response-output {
  font-size: 12px;
  position: absolute;
  bottom: 13px;
  width: 100%;
  left: 0;
  text-align: center;
  transition-duration: 0.3s;
  opacity: 0;
  color: #3ebd3d;
}
.simple-cf7.submitting .ajax-loader {
  display: block;
}
.sent .wpcf7-response-output {
  opacity: 1;
}
.simple-cf7 input.wpcf7-not-valid,
.simple-cf7 textarea.wpcf7-not-valid {
  border-color: #ff8686;
}
.wpcf7-not-valid-tip {
  color: #fff;
  opacity: 0.7;
  font-size: 1em;
  font-weight: normal;
  display: block;
  margin-top: -15px;
  margin-bottom: 15px;
  margin-left: 5px;
}
