/*@import "./reset.css";*/
/*font-family: 'Lobster', sans-serif; 
font-family: 'PT Sans', sans-serif;*/
.none {
  display: none;
}

.lock {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "PT Sans", sans-serif;
  line-height: normal;
}

body>* {
  flex-shrink: 0;

}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

fieldset,
legend {
  border: none;
  margin: 0;
  padding: 0;
}

.header {
  position: relative;
  height: 800px;
  padding-top: 50px;
  background-color: #265847;
  background-image: url(../img/header-background.jpg);
  background-position: center;
  background-size: cover;
}

.header-2 {
  color: #41405b;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  /* Tablet */
}

.header-2-inner {
  margin-bottom: 60px;
  text-align: center;
  /* Tablet */
}

@media (max-width: 1199px) {
  .header-2-inner {
    margin-top: 4px;
    margin-bottom: 40px;
  }
}

.header-inner {
  display: flex;
  height: 100px;
  align-items: center;
  background-color: #265847;
  background-image: url(../img/header/header-mini-background.jpg);
  background-position: center;
  background-size: cover;
}

.header-top {
  display: flex;
  justify-content: space-between;
  width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  align-items: center;
}

.logo {
  font-family: "Lobster", sans-serif;
  font-size: 40px;
  color: #fff;
}

.header-nav {
  font-size: 22px;
}

.header-nav-list {
  display: flex;
  column-gap: 50px;
  flex-wrap: wrap;
}

.header-nav-list-link {
  color: #fff;
  text-decoration: none;
}

/* .mobile-nav-button {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
} */

/*Гамбургер*/

.mobile-nav-button {
  display: none;
  margin: 0;
  padding: 0;
  border: none;
  background-color: transparent;
  /**/
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 38px;
  height: 38px;
  /* background-color: #777; */
}

.mobile-nav-button__icon {
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;
  left: 50%;
  top: 50%;
  transition: background-color 0.2s ease-in 0.2s;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.mobile-nav-button__icon::after,
.mobile-nav-button__icon::before {
  background-color: #fff;
  transition: top 0.2s ease-in, transform 0.2s ease-in 0.2s;
}

.mobile-nav-button__icon::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 2px;
  top: -10px;
}

.mobile-nav-button__icon::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 2px;
  top: 10px;
}

.mobile-nav-button__icon.active {
  background-color: transparent;
  /* transition: transform 0.2s ease-in, top 0.2s ease-in 0.2s; */
}

.mobile-nav-button__icon.active::before {
  transform: rotate(45deg);
  top: 0;
}

.mobile-nav-button__icon.active::after {
  transform: rotate(-45deg);
  top: 0;
}

/*конец гамбургера*/




.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  margin-top: 8px;
  padding-left: 15px;
  padding-right: 15px;
  color: #fff;
  text-align: center;
}

.header-title {
  font-size: 60px;
  font-weight: 700;
}

.header-subtitle {
  font-size: 24px;
}

.header-subtitle {
  margin-top: 20px;
}

.header-scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding-bottom: 34px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
}

.header-scroll::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 18px;
  height: 24px;
  background-image: url("../img/header/arrow-down.svg");
}

.main {
  padding: 120px 0;
}

.container {
  width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.main-container-row {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  margin-bottom: 120px;
}

.main-container-row:last-child {
  margin-bottom: 0;
}

.main-container-row:nth-child(even) {
  flex-direction: row-reverse;
}

.main-text {
  width: 470px;
  line-height: 1.6;
  color: #31405b;
}

.button {
  display: inline-block;
  width: 180px;
  height: 50px;
  border-radius: 50px;
  border: none;
  background: #0ac883;
  box-shadow: 0px 8px 20px 0px rgba(24, 219, 148, 0.35);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  line-height: 50px;
  cursor: pointer;
}

.main-text p {
  margin-bottom: 40px;
  font-size: 20px;
}

.main-text p a {
  color: #138ece;
}

.main-img {
  width: 570px;
}

.other-pages {
  padding-top: 60px;
  padding-bottom: 98px;
  background-color: #f2f8f6;

}

.page-404 {
  text-align: center;
}

.footer {
  margin-top: auto;
  background-color: #265847;
  padding: 71px 0 94px;
  color: #fff;
  text-align: center;

}

@media (max-width: 1199px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media (max-width: 899px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.footer a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.footer-copyright {
  width: 270px;
}

.footer-logo {
  margin-bottom: 28px;
}

.footer-copyright p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-info-wrapper {
  display: flex;
  padding-top: 9px;
  column-gap: 30px;
}

.footer-info-wrapper h4 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
}

.footer-info {
  width: 170px;
}

.footer-services,
.footer-contacts {
  width: 270px;
}

.footer-info-wrapper li {
  margin-bottom: 15px;
}

.footer-info-wrapper li:last-child {
  margin-bottom: 0;
}

.footer-contacts p {
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-contacts p:last-child {
  margin-bottom: 0;
}

/*cards*/
.cards-row {
  display: flex;
  justify-content: space-between;
  /* Mobile */
}

@media (max-width: 899px) {
  .cards-row {
    flex-direction: column;
  }
}

.cards-row:first-child {
  margin-bottom: 30px;
}

.standart-card {
  width: 570px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}

@media (max-width: 1199px) {
  .standart-card {
    width: 420px;
  }
}

@media (max-width: 899px) {
  .standart-card {
    width: 570px;
  }
}

@media (max-width: 599px) {
  .standart-card {
    width: 290px;
  }
}

.wide-card {
  width: 670px;
  /* Tablet */
  /* Mobile */
  /* Mobile XS */
}

@media (max-width: 1199px) {
  .wide-card {
    width: 495px;
  }
}

@media (max-width: 899px) {
  .wide-card {
    width: 570px;
  }
}

@media (max-width: 599px) {
  .wide-card {
    width: 290px;
  }

  .wide-card img {
    height: 210px;
  }
}

.high-card {
  width: 470px;
}

@media (max-width: 1199px) {
  .high-card {
    width: 345px;
  }

  .high-card img {
    height: 511px;
  }
}

@media (max-width: 899px) {
  .high-card {
    height: 242px;
    width: 570px;
  }

  .high-card img {
    height: 100%;
  }
}

@media (max-width: 599px) {
  .high-card {
    width: 290px;
    height: 210px;
  }

  .high-card img {
    width: 290px;
    height: 100%;
  }
}

.standart-card,
.high-card,
.wide-card {
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s ease-in;
}

.standart-card:hover,
.high-card:hover,
.wide-card:hover {
  opacity: 0.9;
}

.card-title-wrapper {
  height: 80px;
  padding: 0 30px;
  line-height: 80px;
  font-size: 28px;
}

@media (max-width: 1199px) {
  .card-title-wrapper {
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 599px) {
  .card-title-wrapper {
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
}

.card-title {
  font-size: inherit;
}

.left-column-container {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.gray {
  background-color: #a6a6a6;
}

.sand {
  background-color: #c1b19b;
}

.turquoise {
  background-color: #66b0be;
}

.ground {
  background-color: #876f56;
}

.herbal {
  background-color: #27695e;
}

/*article-page*/
.row-article-page {
  display: flex;
  justify-content: space-between;
  /* Mobile media*/
}

@media (max-width: 899px) {
  .row-article-page {
    flex-direction: column-reverse;
  }
}

.row-article-page a {
  color: #138ece;
}

.article-nav {
  width: 270px;
  padding-top: 9px;
  /* Mobile media*/
}

@media (max-width: 899px) {
  .article-nav {
    width: 100%;
  }
}

.article-title-nav {
  margin-bottom: 34px;
  font-size: 28px;
  color: #31405b;
}

.article-nav-list {
  border-top: 1px solid #d6d9d8;
}

.article-nav-list li {
  border-bottom: 1px solid #d6d9d8;
}

.article-nav-list a {
  display: block;
  padding-top: 15px;
  padding-bottom: 14px;
  font-size: 20px;
  text-decoration: none;
}

.article-nav-list a.active {
  font-weight: 700;
  color: #e04e4e;
}

.article-nav-list a:hover {
  text-decoration: underline;
}

.trekking-article {
  width: 770px;
  color: #31405b;
  line-height: 1.6;
  font-size: 20px;
  /* Tablet */
  /* Mobile media*/
  /* Mobile XS */
}

@media (max-width: 1199px) {
  .trekking-article {
    width: 570px;
    font-size: 18px;
  }
}

@media (max-width: 899px) {
  .trekking-article {
    font-size: 16px;
  }
}

@media (max-width: 599px) {
  .trekking-article {
    width: 290px;
    line-height: 1.2;
  }
}

.title-article {
  margin-bottom: 40px;
  font-size: 54px;
  line-height: 1.3;
}

@media (max-width: 1199px) {
  .title-article {
    font-size: 50px;
    margin-bottom: 20px;
  }
}

@media (max-width: 899px) {
  .title-article {
    font-size: 42px;
  }
}

@media (max-width: 599px) {
  .title-article {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

.title-contacts {
  margin-bottom: 40px;
}

@media (max-width: 899px) {
  .title-contacts {
    margin-bottom: 30px;
  }
}

.contacts-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #31405b;
}

@media (max-width: 1199px) {
  .contacts-row {
    flex-direction: column;
    row-gap: 40px;
  }
}

.main-title {
  color: #31405b;
  font-size: 54px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .main-title {
    font-size: 50px;
  }
}

@media (max-width: 899px) {
  .main-title {
    font-size: 42px;
  }
}

@media (max-width: 599px) {
  .main-title {
    font-size: 28px;
  }
}


.trekking-article h2 {
  margin-bottom: 10px;
  font-size: 32px;
  padding-top: 5px;
  /* Mobile XS */
}

.trekking-article h3 {
  padding-top: 3px;
  margin-bottom: 12px;
  font-size: 26px;
}

.trekking-article h4 {
  padding-top: 1px;
  margin-bottom: 14px;
  font-size: 22px;
}

.trekking-article p {
  margin-bottom: 15px;
}

.trekking-article>*:last-child {
  margin-bottom: 0;
}

.trekking-img {
  margin: 40px 0;
  /* Tablet */
  /* Mobile media*/
  /* Mobile XS */
}

@media (max-width: 1199px) {
  .trekking-img {
    margin: 30px 0;
  }
}

@media (max-width: 899px) {
  .trekking-img {
    margin: 20px 0;
  }
}

@media (max-width: 599px) {
  .trekking-img {
    margin: 10px 0;
  }
}

/*  tablet  */
@media (max-width: 1199px) {
  .header {
    height: 591px;
  }

  .header-top,
  .header-content,
  .container,
  .footer-row {
    width: 900px;
  }

  .header-nav-list {
    /* display: none; */
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2d2d2d;
    opacity: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* transition: top 0s linear, opacity 0.2s ease-in; */
    transition: opacity 0.2s ease-in, top 0s linear 0.2s;
  }

  .header-nav-list.header-nav--active {
    top: 0;
    opacity: 1;
    /* transition: opacity 0.2s ease-in, top 0s linear 0.2s; */
    transition: top 0s linear, opacity 0.2s ease-in;
  }

  .header-nav-list-item {
    margin-top: 35px;
  }

  .mobile-nav-button {
    display: block;
    cursor: pointer;
  }

  .header-title {
    font-size: 52px;
    line-height: 1;
  }

  .header-scroll {
    font-size: 0;
  }

  .main {
    padding: 80px 0;
  }

  .main-container-row {
    margin-bottom: 80px;
  }

  .header-2 {
    font-size: 50px;
    line-height: 1.2;
  }

  .main-text p {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .main-img {
    width: 420px;
    flex-shrink: 0;
  }

  .main-img img {
    object-fit: cover;
  }

  .main-text {
    width: auto;
  }

  .other-pages {
    padding-bottom: 60px;
  }

  /* 
  .footer {
    padding: 50px 0;
  } */

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo .logo {
    font-size: 30px;
  }

  .footer-copyright p {
    width: 225px;
    font-size: 14px;
  }

  .footer-services {
    display: none;
  }

  .footer-info {
    width: 195px;
  }

  .footer-info-wrapper h4 {
    margin-bottom: 20px;
  }
}

@media (max-width: 899px) {
  picture img {
    width: 570px;
    height: 242px;
  }
}

@media (max-width: 599px) {
  picture img {
    width: 570px;
    height: 240px;
  }
}

/*  mobile  */
@media (max-width: 899px) {

  .header-top,
  .header-content,
  .container,
  .footer-row {
    width: 600px;
  }

  .header-title {
    font-size: 42px;
  }

  .header-subtitle {
    font-size: 20px;
  }

  .main {
    padding: 60px 0;
  }

  .main-container-row {
    margin-bottom: 60px;
    flex-direction: row-reverse;
  }

  .header-2 {
    font-size: 42px;
    line-height: 1;
  }

  .main-text p {
    font-size: 16px;
  }

  .button {
    font-size: 18px;
    width: 159px;
    height: 46px;
    line-height: 46px;
  }

  .main-img {
    width: 170px;
    height: 393px;
    flex-shrink: 0;
  }

  .main-img img {
    height: 100%;
    object-fit: cover;
  }

  .main-text {
    width: auto;
  }

  .other-pages {
    padding-top: 40px;
    padding-bottom: 40px;
    /* Mobile media*/
  }
}

@media (max-width: 899px) and (max-width: 899px) {
  .other-pages {
    padding-bottom: 60px;
  }
}

@media (max-width: 899px) {
  .cards-row {
    margin-bottom: 30px;
  }

  .cards-row>*:not(:last-child) {
    margin-bottom: 30px;
  }

  .cards-wrapper {
    display: flex;
    flex-direction: column;
  }

  .left-column-container {
    margin-bottom: 30px;
  }

  /* .footer {
    padding: 40px 0;
  } */

  .footer-row {
    flex-direction: column-reverse;
  }

  .footer-copyright {
    width: auto;
  }

  .footer-copyright p {
    width: auto;
    font-size: 14px;
  }

  .footer-info-wrapper {
    padding-top: 0;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}

/*  mobile XS  */
@media (max-width: 599px) {

  .header-top,
  .header-content,
  .container,
  .footer-row {
    width: 320px;
  }

  .logo {
    font-size: 30px;
  }

  .header-title {
    font-size: 32px;
  }

  .header-subtitle {
    font-size: 18px;
    margin-top: 10px;
  }

  .main {
    padding: 40px 0;
  }

  .main-container-row {
    margin-bottom: 40px;
    flex-direction: column-reverse;
  }

  .header-2 {
    font-size: 34px;
    line-height: 1;
    /* Mobile media*/
  }
}

@media (max-width: 599px) and (max-width: 899px) {
  .header-2 {
    font-size: 28px;
  }
}

@media (max-width: 599px) {
  .main-img {
    width: 290px;
    height: 150px;
    flex-shrink: 0;
    margin-bottom: 20px;
  }

  .main-img img {
    width: 100%;
    object-fit: cover;
  }

  .main-text {
    width: auto;
  }

  .main-container-row:nth-child(even) {
    flex-direction: column-reverse;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer-services {
    display: block;
    margin-bottom: 40px;
  }

  .footer-info {
    width: auto;
    margin-bottom: 40px;
  }

  .footer-info-wrapper {
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
  }

  .footer a {
    font-size: 16px;
  }

  .footer-info-wrapper h4 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .footer-info-wrapper li {
    margin-bottom: 10px;
  }

  .footer-contacts p {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

/* contacts */
.contacts-info {
  display: flex;
  flex-direction: column;
  width: 470px;
}

@media (max-width: 1199px) {
  .contacts-info {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 899px) {
  .contacts-info {
    flex-direction: column;
    row-gap: 40px;
  }
}


@media (max-width: 1199px) {
  .contacts-block {
    width: 420px;
  }
}

@media (max-width: 899px) {
  .contacts-block {
    width: 100%;
  }
}


.map {
  width: 470px;
  height: 345px;
}

@media (max-width: 1199px) {
  .map {
    width: 420px;
    height: 310px;
  }
}

@media (max-width: 899px) {
  .map {
    width: 100%;
  }
}

.contacts-block+.contacts-block {
  margin-top: 40px;
}

@media (max-width:1199px) {
  .contacts-block+.contacts-block {
    margin-top: 0;
  }
}


.tel-address-title,
.map-title,
.send-form-title {
  font-size: 28px;
  margin-bottom: 20px;
}


@media(max-width:599px) {
  .send-form-title {
    font-size: 24px;
  }
}


@media (max-width:1129px) {

  .tel-address-title,
  .map-title {
    font-size: 24px;
  }
}

@media (max-width:599px) {

  .tel-address-title,
  .map-title {
    font-size: 20px;
  }
}

.tel-address-list {
  line-height: 1.6;
}

.tel-address-item {
  position: relative;
  padding-left: 39px;
  font-size: 20px;
}

@media (max-width:1129px) {
  .tel-address-item {
    font-size: 18px;
  }
}

.tel-address-item+.tel-address-item {
  margin-top: 15px;
}

.tel-address-item a {
  text-decoration: none;
  color: #31405b;
}

.tel-address a:hover {
  text-decoration: underline;
}

.tel-address-item::before {
  content: "";
  position: absolute;
  display: block;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
}

.tel::before {
  background-image: url("../img/icons/tel.png");
}

.email::before {
  background-image: url("../img/icons/email.png");
}

.address::before {
  background-image: url("../img/icons/map-pin.png");
}

/*------------------------*/
.send-form {
  width: 630px;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0px 10px 20px 0px rgba(211, 211, 211, 0.25);
}

@media (max-width:1199px) {
  .send-form {
    width: 100%;
  }
}

@media (max-width: 899px) {
  .send-form {
    padding: 30px;
  }
}

@media (max-width: 599px) {
  .send-form {
    padding: 15px;
  }
}

.form-group {
  margin-bottom: 30px;
  font-size: 18px;
}

@media (max-width: 599px) {
  .form-group {
    font-size: 16px;
  }
}

.form-group:last-of-type {
  margin-bottom: 35px;
}

.form-group-title {
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.form-group input::placeholder {
  color: rgba(49, 64, 91, 0.5);
}

.form-group input {
  padding: 0 20px;
  background-color: #eee;
  border: 1px solid #c0c0c0;
  border-radius: 6px;
  color: #31405b;
  font-family: "PT Sans", sans-serif;
  font-size: 18px;
}

@media (max-width: 1199px) {
  .form-group input {
    width: 390px;
  }
}

@media (max-width: 899px) {
  .form-group input {
    width: 250px;
  }
}

@media (max-width: 599px) {
  .form-group input {
    width: 100%;
  }
}


.form-group input.name {
  width: 550px;
  height: 50px;
  margin-bottom: 10px;

}


@media (max-width:1199px) {
  .form-group input.name {
    width: 100%;
  }
}

@media (max-width:899px) {
  .form-group input.name {
    width: 510px;
  }
}

@media (max-width:599px) {
  .form-group input.name {
    width: 260px;
  }
}

.phone,
.mail {
  width: 270px;
  height: 50px;
}

.form-group-row {
  display: flex;
  justify-content: space-between;

}

@media (max-width:599px) {
  .form-group-row {
    flex-direction: column;
    row-gap: 10px;
  }
}

/* ------------------  */
.radio-wrapper,
.checkbox-wrapper {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-wrapper {
  margin-bottom: 20px;
}

.checkbox-wrapper {
  margin-bottom: 16px;
}

.radio-wrapper:last-child,
.checkbox-wrapper:last-child {
  margin-bottom: 0;
}

.real-radio,
.real-checkbox {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.custom-radio,
.custom-checkbox {
  display: inline-block;
  position: relative;
  content: "";
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  background-color: #eee;
  border: 1px solid #c0c0c0;
  margin-right: 15px;
}

.custom-radio {
  border-radius: 50%;
}

.custom-radio::before {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #2ab698;
  border-radius: 50%;
  transition: transform 0.2s ease-in;
}

.real-radio:checked+.custom-radio::before,
.real-checkbox:checked+.custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
}

/*checkboxes*/
.custom-checkbox::before {
  display: block;
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-image: url("../img/icons/checkbox-checked.png");
  transition: transform 0.2s ease-in;
}

.send-button {
  width: 235px;
  height: 50px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: "PT Sans", sans-serif;
  background-color: #0ac883;
  box-shadow: 0px 8px 20px 0px rgba(24, 219, 148, 0.35);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

/*# sourceMappingURL=main.css.map */