@import "./reset.css";
@import url(https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800);

/*. {
  font-family: "Manrope", sans-serif;
  
}*/

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: normal;
}

a {
  text-decoration: underline;
  color: #81b4bd;
}

.sticky-footer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  margin: 0 auto;
  width: 1200px;
  padding: 0 15px;
}

.title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.title span {
  color: #81b4bd;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.none {
  display: none;
}

/* Header */

.header-wrapper {
    position: relative;
    z-index: 19;
    padding: 40px 0;
}

.header-bg {
  background-color: #f6f6f6;
}

.header-white-bg {
  background-color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  font-size: 16px;
}

.nav-link {
  color: #000;
}

.active-link {
  color: #81b4bd;
}

.nav-link:hover {
  color: #00ceb5;
}

.btn-mobile-nav {
  display: none;
}

/*Mobile-Nav*/
.mobile-nav {
  z-index: 9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #f6f6f6;

  /* display: flex; */
  justify-content: center;
  align-items: center;

  display: none;
}

.mobile-nav.open {
  display: flex;
}

/* .visually-hidden {
} */

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.mobile-nav-list a {
  color: #000;
}
/*Endd Mobile-Nav*/

/*Main Page*/
/*section Promo*/
.promo {
  display: flex;
  align-items: center;
  padding-left: 70px;

  height: 500px;
  background-color: #394d42;
  background-image: url("../img/promo/promo-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  color: #fff;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .promo {
    background-image: url("../img/promo/promo-bg@2x.jpg");
  }
}

.promo-title {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 60px;
}
.promo-text {
  font-size: 24px;
}

/*section Main-content*/
.main-content {
  padding: 90px 0;
}

.content-row {
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-bottom: 60px;
}

.content-img {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 40px;
}

.content-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.content-text p {
  font-size: 18px;
  line-height: 1.8;
}

.content-text a {
  color: #81b4bd;
  text-decoration: underline;
}

.content-row:last-child {
  margin-bottom: 0px;
}

/*Inner Page*/
.inner-page {
  padding: 90px 0;
}

.inner-page-title-wrapper {
  margin-bottom: 60px;
}

/*PAGE TOURS*/
/*main .tours-page*/
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 60px;
}

.card {
  width: 370px;
}

.card-img {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}

.card-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.card-desc p {
  line-height: 1.5;
}

.card-desc a {
  text-decoration: underline;
  color: #81b4bd;
}
/* End PAGE TOURS*/

/*PAGE ABOUT*/
/*main .about-page*/
.article-about-content {
  width: 970px;
  margin: 0 auto;
}

.article-about-content p {
  font-size: 18px;
  line-height: 1.8;
}

.article-about-content p + p {
  margin-top: 30px;
}

.article-about-img {
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
}
/* End PAGE ABOUT*/

/*PAGE CONTACTS*/
.contact-columns {
  display: flex;
  justify-content: space-between;
  column-gap: 100px;
}

/*google - map*/
.google-map {
  width: 100%;
  height: 345px;
}

/*form*/
.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;

  padding: 30px;
  width: 600px;

  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 5px 25px 0px rgba(211, 211, 211, 0.5);
}

.title-form-contact {
  font-size: 28px;
  font-weight: 700;
}
.form-grup {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subtitle-form-contact {
  font-size: 20px;
  font-weight: 700;
}

.inputs-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.input {
  width: 100%;
  padding: 14px 20px;
  height: 50px;
  border-radius: 2px;
  border: 1px solid #b5dee5;
  background-color: #eff9fb;
  color: #36727d;
}

.input::placeholder {
  font-size: 16px;
  font-weight: 500;
  color: #a3c9dc;
}

.input.input-50 {
  flex: 1;
}

.radio-list,
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.radio-list label,
.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 15px;
}

.radio-list label input,
.checkbox-list label input {
  flex-shrink: 0;
}

/*Custom-radio*/
.custom-radio {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid #b5dee5;
  background-color: #eff9fb;
}

.custom-radio::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease-in;

  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #37b6cc;
}

.real-radio:checked + .custom-radio::after {
  transform: translate(-50%, -50%) scale(1);
}

/*Custom-checkbox*/
.custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;

  border: 1px solid #b5dee5;
  background-color: #eff9fb;
}

.custom-checkbox::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease-in;

  width: 16px;
  height: 13px;

  background-image: url("../img/icons/tick.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.real-checkbox:checked + .custom-checkbox::after {
  transform: translate(-50%, -50%) scale(1);
}

/*Submit-btn*/
.submit-btn {
  align-self: start;

  padding: 12px 36px;
  border-radius: 6px;
  /* width: 235px; */
  height: 50px;

  box-shadow: 0 8px 20px 0 rgba(129, 180, 189, 0.35);
  background: #81b4bd;

  text-align: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  transition: opacity 0.2s ease-in, background-color 0.2s ease-in;
}

.submit-btn:hover {
  opacity: 0.8;
}

.submit-btn:active {
  opacity: 1;
  background-color: #639199;
}

/*adress*/
.address-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 470px;
}

.address-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* End PAGE CONTACTS*/

/*Footer*/
.footer {
  margin-top: auto;
  padding: 60px 0;
  background-color: #111;
  color: #fff;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.footer-copyright {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.3);
}

.footer-contacts {
  text-align: right;
}

.footer-contacts p:nth-child(2) {
  margin-bottom: 10px;
}

.footer-phone {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

.footer-email {
  font-size: 14px;
  line-height: 1.5;
  color: #00bda6;
}

.footer-address {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
