@import "./reset.css";
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=PT+Sans:wght@400;700&display=swap");
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "PT Sans", sans-serif;
  line-height: normal;
  height: 100%;
  display: flex;
  flex-direction: column;
}

input {
  font-family: "PT Sans", sans-serif;
}

.container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.inner-page {
  padding: 60px 0 100px;
  background-color: #f2f8f6;
}

.main-header {
  font-size: 54px;
  font-weight: 700;
  color: #31405B;
}

.header__burger {
  display: none;
  width: 40px;
  height: 25px;
  position: relative;
  background-color: transparent;
  z-index: 1000;
}
.header__burger span {
  position: absolute;
  transform: translate(-50%, -50%);
  height: 3px;
  width: 40px;
  background-color: #fff;
  transition: 0.3s;
}
.header__burger span:after, .header__burger span:before {
  content: "";
  position: absolute;
  height: 3px;
  width: 40px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 2px;
}
.header__burger span:after {
  transform: translate(-50%, 9px);
}
.header__burger span:before {
  transform: translate(-50%, -9px);
}
.header__burger.header__burger--active {
  position: fixed;
  right: 15px;
}
.header__burger.header__burger--active span {
  background-color: transparent;
}
.header__burger.header__burger--active span:after {
  transform: translate(-14px, 14px);
  rotate: 45deg;
  border-radius: 0px;
}
.header__burger.header__burger--active span:before {
  transform: translate(-14px, -14px);
  rotate: -45deg;
  border-radius: 0px;
}
@media (max-width: 1199px) {
  .header__burger {
    display: block;
  }
}

.burger__menu {
  padding: 40px 15px 40px;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 320px;
  position: fixed;
  z-index: 999;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  background-color: #232323;
  color: #fff;
  transition: transform 0.4s;
}
.burger__menu.burger__menu--active {
  transform: translate(0, -50%);
}

.burger__nav {
  display: flex;
  flex-direction: column;
  row-gap: 28px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

a.mainpage-link {
  color: #138ece;
}

a.button {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  background-color: #0AC883;
  box-shadow: 0px 8px 20px 0px rgba(24, 219, 148, 0.35);
  font-size: 20px;
}

input.button {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 50px;
  background-color: #0AC883;
  box-shadow: 0px 8px 20px 0px rgba(24, 219, 148, 0.35);
  font-size: 20px;
}

.logo {
  font-family: "Lobster", cursive;
  font-size: 40px;
}

.header {
  position: relative;
  height: 800px;
  padding-top: 50px;
  background-color: #265847;
  background-image: url("./../images/header/header-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  flex-shrink: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100px;
  background-color: #265847;
  background-image: url("./../images/header/header-small-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 0;
}

.header-inner .header-nav-list {
  align-items: center;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 1170px;
}

.header-nav {
  font-size: 22px;
}

.header-nav-list {
  display: flex;
  gap: 50px;
}

.header-content {
  position: absolute;
  width: 1170px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.header-content p {
  font-size: 24px;
}

.header-title {
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.header-scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  padding-bottom: 34px;
  font-size: 16px;
  text-decoration: none;
}

.header-scroll::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("./../images/header/arrow-down.svg");
}

.main {
  padding: 120px 0;
  color: #31405B;
}

.main-row {
  display: flex;
  justify-content: space-between;
}

.main-row:not(:last-child) {
  margin-bottom: 120px;
}

.main-row:nth-child(even) {
  flex-direction: row-reverse;
}

.main-content {
  width: 470px;
}

.main-img {
  width: 570px;
}

.main-content-header {
  margin-bottom: 20px;
}

.main-content-text {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.6;
  color: #31405B;
}

.main-content-text a {
  color: #138ECE;
  text-decoration: underline;
}

.main-content-text p {
  margin-top: 0;
  margin-bottom: 15px;
}

.footer {
  background-color: #265847;
  padding: 70px 0 90px;
  color: #fff;
  margin-top: auto;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-row {
  display: flex;
  justify-content: space-between;
}

.footer-copyright {
  width: 270px;
}

.footer-copyright p {
  font-size: 16px;
  line-height: 1.6;
}

.footer-logo {
  margin-bottom: 26px;
}

.footer-logo a:hover {
  text-decoration: none;
}

.footer-widgets-wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.footer-widget-title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 24px;
}

.footer-widget-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 18px;
}

.footer-widget-info {
  width: 170px;
}

.footer-widget-services {
  width: 270px;
}

.footer-widget-contacts {
  width: 270px;
}

.row-article-page {
  display: flex;
  justify-content: space-between;
}

.article-page-nav {
  padding-top: 10px;
  width: 270px;
  flex-shrink: 0;
  flex-grow: 0;
}

.article-page-nav-title {
  margin-bottom: 34px;
  color: #31405B;
  font-size: 28px;
  font-weight: 700;
}

.article-page-nav-list {
  color: #138ECE;
  font-size: 20px;
  font-weight: 400;
}

.article-page-nav-list a {
  display: block;
  padding: 14px 0;
  transition: all 0.3s;
}

.article-page-nav-list a.active {
  color: #E04E4E;
  font-weight: 700;
}

.article-page-nav-list a:hover {
  color: #E04E4E;
  font-weight: 700;
}

.article-page-nav-list li {
  border-bottom: #D6D9D8 solid 1px;
}

.article-page-nav-list li:first-child {
  border-top: #D6D9D8 solid 1px;
}

.article-page-article {
  color: #31405B;
  width: 770px;
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 20px;
  line-height: 1.6;
}
.article-page-article p {
  line-height: 1.6;
}

.article-page-article img {
  display: block;
}

.article-page-article h1,
.article-page-article h2,
.article-page-article h3,
.article-page-article h4,
.article-page-article h5,
.article-page-article h6 {
  margin-bottom: 15px;
  font-weight: 700;
}

.article-page-article h1 {
  font-size: 54px;
  margin-bottom: 40px;
  line-height: normal;
}

.article-page-article h2 {
  font-size: 32px;
}

.article-page-article h3 {
  font-size: 26px;
}

.article-page-article h4 {
  font-size: 22px;
}

.article-page-article h5 {
  font-size: 20px;
}

.article-page-article h6 {
  font-size: 18px;
}

.article-page-article p {
  margin-bottom: 15px;
}

.article-page-article > *:last-child {
  margin-bottom: 0;
}

.article-page-article img {
  margin-top: 40px;
  margin-bottom: 40px;
}

.cards-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.default-card {
  width: 570px;
}

.wide-card {
  width: 670px;
}

.high-card {
  width: 470px;
}

.tours-color {
  background-color: #A6A6A6;
}

.extreme-color {
  background-color: #C1B19B;
}

.adventures-color {
  background-color: #66B0BE;
}

.tracking-color {
  background-color: #876F56;
}

.jungle-color {
  background-color: #27695E;
}

.cards-row {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.cards-column {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.card-title-wrapper {
  display: flex;
  align-items: center;
  height: 80px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  padding: 0 30px;
  overflow: hidden;
  white-space: nowrap;
}

.card-title {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.card-img {
  transition: 0.3s;
}

.card-img-wrapper {
  overflow: hidden;
  display: block;
}

.card-img:hover {
  scale: 1.1;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  width: 470px;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 40px;
       column-gap: 40px;
}

.contacts-header {
  margin-bottom: 40px;
}

.contact-block-title {
  margin-bottom: 20px;
  color: #31405B;
  font-size: 28px;
  font-weight: 700;
}

.contact-block-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #31405B;
  font-size: 20px;
  line-height: 1.6;
}

.contact-block:not(:last-of-type) {
  margin-bottom: 40px;
}

.contact-block-list a:hover {
  color: #138ece;
}

.contact-list-icon {
  position: relative;
  padding-left: 39px;
}

.contact-list-icon::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 24px;
  height: 24px;
  background-size: auto;
  background-repeat: no-repeat;
  vertical-align: bottom;
}

.contact-list-icon.phone::before {
  background-image: url("./../images/icons/phone.svg");
}

.contact-list-icon.mail::before {
  background-image: url("./../images/icons/mail.svg");
}

.contact-list-icon.map::before {
  background-image: url("./../images/icons/map-pin.svg");
}

.inner-page-tours-header {
  margin-bottom: 60px;
  text-align: center;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 15px;
       column-gap: 15px;
  margin-bottom: 17px;
}

.checkbox-row:last-child {
  margin-bottom: 0;
}

.real-checkbox {
  height: 0;
  width: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.real-checkbox:checked + .custom-checkbox::before {
  transform: translate(-50%, -50%) scale(1);
}

.custom-checkbox {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 2px;
  border: 1px solid #C0C0C0;
  background: #EEE;
  vertical-align: bottom;
}

.real-checkbox:focus + .custom-checkbox {
  border: 1px solid #2AB698;
  box-shadow: 0 0 10px rgba(42, 182, 152, 0.5), 0 0 0px 2px #333;
}

.custom-checkbox::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  content: "";
  width: 17px;
  height: 17px;
  background-image: url("./../images/icons/check.svg");
  transition: transform 0.3s;
}

.radio-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

label.radio-row:last-child {
  margin: 0;
}

.custom-radio {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #eeeeee;
  border: 1px solid #C0C0C0;
  border-radius: 50%;
  vertical-align: bottom;
  flex-shrink: 0;
}

.custom-radio:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  content: "";
  width: 12px;
  height: 12px;
  background-color: #2AB698;
  border-radius: 50%;
  transition: transform 0.3s;
}

.real-radio {
  height: 0;
  width: 0;
  position: absolute;
  opacity: 0;
  z-index: -1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.real-radio:checked + .custom-radio::before {
  transform: translate(-50%, -50%) scale(1);
}

.real-radio:focus + .custom-radio {
  border: 1px solid #2AB698;
  box-shadow: 0 0 10px rgba(42, 182, 152, 0.5), 0 0 0px 2px #333;
}

.form {
  width: 630px;
  padding: 40px;
  box-shadow: 0px 10px 20px 0px rgba(211, 211, 211, 0.25);
}

.form-title {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 30px;
  font-size: 18px;
}

.form-group:last-of-type {
  margin-bottom: 35px;
}

.form-group-title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
}

.input {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  height: 50px;
  background-color: #EEEEEE;
  border: 1px solid #C0C0C0;
  box-sizing: border-box;
  border-radius: 6px;
  font-size: 18px;
  color: #31405B;
}

.input::-moz-placeholder {
  font-size: 18px;
  color: rgba(49, 64, 91, 0.5);
}

.input::placeholder {
  font-size: 18px;
  color: rgba(49, 64, 91, 0.5);
}

.form-group-row {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 10px;
}

.form-group-row:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .container {
    width: 900px;
  }
  .header-content {
    width: 100%;
    padding: 0 15px;
  }
  .header-top {
    width: 100%;
    padding: 0 15px;
  }
  .header-nav-btn {
    display: block;
  }
  .header-nav-list {
    display: none;
  }
  .header-title {
    font-size: 52px;
  }
  .header-scroll {
    font-size: 0;
  }
  .header {
    height: 590px;
  }
  .main {
    padding: 80px 0;
  }
  .main-header {
    font-size: 50px;
    line-height: 1;
  }
  .main-content-text {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .main-content {
    width: 420px;
  }
  .main-img {
    width: 420px;
  }
  .main-row:not(:last-child) {
    margin-bottom: 80px;
  }
  .footer {
    padding: 50px 0;
  }
  .footer-widget-services {
    display: none;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-logo .logo {
    font-size: 30px;
  }
  .footer-copyright p {
    font-size: 14px;
    width: 195px;
  }
  .footer-widget-title {
    margin-bottom: 20px;
  }
  .footer-widgets-wrapper {
    -moz-column-gap: 54px;
         column-gap: 54px;
  }
  .header-inner {
    height: 100px;
  }
  .inner-page {
    padding: 40px 0 60px;
  }
  .article-page-nav-list {
    font-size: 18px;
    padding: 0 5px;
  }
  .article-page-article {
    width: 568px;
  }
  .article-page-article h1 {
    font-size: 50px;
    margin-bottom: 23px;
  }
  .article-page-article p {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .article-page-article img {
    margin: 30px 0;
  }
  .article-page-article a {
    color: #138ECE;
    text-decoration-line: underline;
  }
  .main-header-contacts {
    line-height: 1.3;
  }
  .contact-row {
    flex-direction: column;
    row-gap: 40px;
  }
  .contact-info {
    width: 100%;
    max-width: 870px;
    flex-direction: row;
    justify-content: space-between;
  }
  .contact-block-body-map {
    width: 420px;
    height: 310px;
  }
  .contact-block-body-map iframe {
    width: 100%;
    height: 100%;
  }
  .contact-block {
    margin-bottom: 0;
  }
  .contact-block-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .contact-block-title-map {
    margin-bottom: 20px;
  }
  .contact-block-list {
    font-size: 18px;
  }
  .form {
    width: 100%;
  }
  .input {
    padding-right: 28px;
    padding-left: 28px;
  }
  .inner-page-tours {
    padding-top: 60px;
  }
  .inner-page-tours-header {
    margin-bottom: 40px;
  }
  .default-card {
    width: 420px;
  }
  .card-title-wrapper {
    height: 60px;
    font-size: 24px;
  }
  .wide-card {
    width: 495px;
  }
}
@media (max-width: 899px) {
  .container {
    width: 100%;
  }
  .header-title {
    font-size: 42px;
  }
  .header-content p {
    font-size: 20px;
  }
  .main {
    padding: 60px 0;
  }
  .main-row {
    flex-direction: row-reverse;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .main-header {
    font-size: 42px;
  }
  .header-nav-btn {
    margin-right: 15px;
  }
  .main-content-text {
    font-size: 16px;
  }
  a.button {
    font-size: 18px;
    padding: 11px 30px;
  }
  .main-img {
    width: 170px;
    flex-shrink: 0;
  }
  .main-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main-content {
    width: auto;
  }
  .main-row:nth-child(even) {
    flex-direction: row-reverse;
  }
  .main-row:not(:last-child) {
    margin-bottom: 60px;
  }
  .footer {
    padding: 40px 0;
  }
  .footer-row {
    flex-wrap: wrap;
  }
  .footer-copyright {
    order: 1;
    width: 100%;
  }
  .footer-copyright p {
    width: 100%;
  }
  .footer-widgets-wrapper {
    width: 100%;
    margin-bottom: 50px;
    padding-top: 0;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .footer-widgets-wrapper > * {
    width: calc(50% - 15px);
  }
  .header-inner {
    height: 80px;
  }
  .header-inner .logo {
    font-size: 30px;
  }
  .inner-page {
    padding-top: 20px;
  }
  .row-article-page {
    flex-direction: column-reverse;
    align-items: center;
  }
  .article-page-nav {
    padding-top: 34px;
    width: 100%;
  }
  .article-page-nav-title {
    margin-bottom: 20px;
  }
  .article-page-nav-list {
    line-height: 1.2;
  }
  .article-page-nav-list a {
    padding: 15px 0;
  }
  .article-page-article h1 {
    font-size: 42px;
  }
  .article-page-article p {
    font-size: 16px;
    margin-bottom: 18px;
    padding: 0;
  }
  .article-page-article img {
    margin: 20px 0;
  }
  .inner-page-contacts {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contacts-header {
    margin-bottom: 30px;
  }
  .contact-info {
    flex-direction: column;
  }
  .contact-block-body-map {
    width: 100%;
    height: 310px;
  }
  .form {
    padding: 30px;
  }
  input.button {
    font-size: 18px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .form-group:last-of-type {
    margin-bottom: 30px;
  }
  .inner-page-tours {
    padding-top: 40px;
  }
  .cards-row {
    row-gap: 30px;
    flex-direction: column;
    align-items: center;
  }
  .default-card {
    width: 570px;
  }
  .wide-card {
    width: 570px;
  }
  .high-card {
    width: 570px;
  }
}
@media (max-width: 599px) {
  .container {
    width: 100%;
  }
  .logo {
    font-size: 30px;
  }
  .header-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
  .header-content p {
    font-size: 18px;
  }
  .header-nav-btn {
    margin-right: 0;
  }
  .main {
    padding: 40px 0;
  }
  .main-header {
    font-size: 34px;
  }
  .main-row {
    flex-direction: column-reverse;
  }
  .main-row:nth-child(even) {
    flex-direction: column-reverse;
  }
  .main-img {
    width: 100%;
    margin-bottom: 20px;
    height: 150px;
  }
  .main-row:not(:last-child) {
    margin-bottom: 40px;
  }
  .footer {
    text-align: center;
  }
  .footer-row {
    flex-direction: column;
    row-gap: 5px;
  }
  .footer-widgets-wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 41px;
    margin-bottom: 40px;
  }
  .footer-copyright {
    margin: 0 auto;
    width: 290px;
  }
  .footer-copyright p {
    width: 100%;
  }
  .footer-widgets-wrapper > * {
    width: 100%;
  }
  .footer-widget-services {
    display: block;
  }
  .footer-widget-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .footer-widget-list {
    font-size: 16px;
    row-gap: 11px;
  }
  .footer-widget-contacts .footer-widget-list {
    gap: 15px;
  }
  .footer-logo {
    margin-bottom: 10px;
  }
  .inner-page {
    padding-bottom: 40px;
  }
  .article-page-nav-title {
    margin-bottom: 15px;
    font-size: 22px;
  }
  .article-page-nav-list {
    font-size: 16px;
    padding: 0;
    width: 230px;
  }
  .article-page-nav-list a {
    padding: 8px 0;
  }
  .article-page-article {
    width: 100%;
  }
  .article-page-article h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .article-page-article h2, .article-page-article h3 {
    line-height: 1;
  }
  .article-page-article h2 {
    margin-bottom: 17px;
  }
  .main-header-contacts {
    font-size: 28px;
    line-height: 1;
  }
  .contact-row {
    row-gap: 30px;
  }
  .contact-block:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .contact-block-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .contact-block-list {
    gap: 20px;
    font-size: 16px;
    line-height: 1.3;
  }
  .contact-list-icon {
    padding-left: 34px;
  }
  .contact-list-icon::before {
    top: 0;
  }
  .contact-block-body-map {
    height: 157px;
  }
  .form {
    padding: 20px 15px 30px;
  }
  .form-title {
    font-size: 24px;
  }
  .form-group {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.3;
  }
  .form-group:last-of-type {
    margin-bottom: 20px;
  }
  .form-group-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .form-group-row {
    flex-direction: column;
    margin-bottom: 0;
  }
  .input {
    padding-right: 15px;
    padding-left: 15px;
  }
  .input:not(:nth-child(2)) {
    margin-bottom: 10px;
  }
  .radio-row {
    margin-bottom: 10px;
  }
  .checkbox-row {
    margin-bottom: 20px;
  }
  input.button {
    padding-right: 35px;
    padding-left: 35px;
  }
  .inner-page-tours {
    padding-top: 40px;
  }
  .cards-wrapper {
    row-gap: 20px;
  }
  .cards-row {
    row-gap: 20px;
  }
  .default-card {
    width: 290px;
  }
  .inner-page-tours-header {
    margin-bottom: 30px;
  }
  .inner-page-tours-header .main-header {
    font-size: 28px;
  }
  .cards-column {
    row-gap: 20px;
  }
  .wide-card {
    width: 290px;
  }
  .high-card {
    width: 290px;
  }
}
.none {
  display: none;
}/*# sourceMappingURL=main.css.map */