/*

Theme Name: Travel

*/

* {
  padding: 0;

  margin: 0;

  border: none;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside,
footer,
header,
main,
nav,
section {
  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;
}

img,
svg {
  max-width: 100%;

  height: auto;
}

address {
  font-style: normal;
}

button,
input,
select,
textarea {
  font-family: inherit;

  font-size: inherit;

  color: inherit;

  background-color: rgba(0, 0, 0, 0);
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;

  box-shadow: none;

  cursor: pointer;
}

button:active,
button:focus,
input:active,
input:focus {
  outline: 0;
}

button::-moz-focus-inner {
  padding: 0;

  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --general-color: #212832;

  --black-color: #131018;

  --grey-color: #707070;

  --red-color: #df6951;

  --white-color: #fff;
}

body,
html {
  height: 100%;

  font-family: GothamPro, sans-serif;

  font-weight: 400;
}

* {
  scroll-behavior: smooth;
}

a {
  color: var(--general-color);
}

.wrapper {
  height: 100vh;

  display: flex;

  flex-direction: column;
  justify-content: space-between;
}

.wrapper-container {
  flex: 1 1 auto;
}

[class*="__container"] {
  max-width: 1250px;

  margin: 0 auto;

  padding: 0 15px;
}

[class*="__container2"] {
  max-width: 1380px;

  margin: 0 auto;

  padding: 0 15px;
}

@font-face {
  font-family: AvenirLTProBlack;

  font-display: swap;

  src: url("assets/fonts/AvenirLTProBlack.woff2") format("woff2");

  font-weight: 400;

  font-style: normal;
}

@font-face {
  font-family: GothamPro;

  font-display: swap;

  src: url("assets/fonts/GothamPro-Bold.woff2") format("woff2");

  font-weight: 700;

  font-style: normal;
}

@font-face {
  font-family: GothamPro;

  font-display: swap;

  src: url("assets/fonts/GothamPro-Regular.woff2") format("woff2");

  font-weight: 400;

  font-style: normal;
}

@font-face {
  font-family: GothamPro;

  font-display: swap;

  src: url("assets/fonts/GothamPro-Medium.woff2") format("woff2");

  font-weight: 500;

  font-style: normal;
}

.header {
  padding: 30px 0;

  position: fixed;

  width: 100%;

  top: 0;

  left: 0;

  z-index: 100;

  background-color: rgba(0, 0, 0, 0);

  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: #fff;

  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
}

.header__blocks {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.header .logo {
  position: relative;

  z-index: 999;
}

.header .logo p {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;

  text-transform: uppercase;

  font-size: 30px;

  font-weight: 700;

  color: var(--general-color);

  letter-spacing: 4px;

  position: relative;
}

.header .logo .logo-name {
  position: absolute;

  top: -10px;

  font-size: 12px;

  font-weight: 600;

  right: 0;

  color: var(--red-color);
}

.header .logo .logo-description {
  position: absolute;

  bottom: -7px;

  font-size: 9px;

  font-weight: 500;

  color: var(--grey-color);
}

.header .gtranslate_wrapper {
  display: flex;

  align-items: center;

  gap: 5px;
}

.header .languages .languages-wrappper {
  cursor: pointer;
}

/* .header .languages .languages-wrappper:hover {

  -webkit-transform: scale(1.1);

  transform: scale(1.1);

  transition: all 0.3s ease-in-out;

} */

.header__info {
  display: flex;

  align-items: center;

  gap: 40px;
}

.menu__list {
  display: flex;

  align-items: center;

  gap: 50px;
}

.menu__item a {
  position: relative;

  display: inline-block;

  transition: all 0.3s ease;
}

.menu__item a::after {
  content: "";

  position: absolute;

  left: 50%;

  bottom: -5px;

  -webkit-transform: translateX(-50%);

  transform: translateX(-50%);

  width: 0;

  height: 2px;

  background-color: var(--red-color);

  transition: width 0.5s ease;
}

.menu__item a:hover {
  color: var(--red-color);
}

.menu__item a:hover::after {
  width: 80%;
}

.menu__item a.active {
  color: var(--red-color);
}

.menu__item a.active::after {
  width: 80%;
}

#burger-menu {
  cursor: pointer;

  height: 30px;

  width: 30px;

  overflow: visible;

  position: relative;

  z-index: 2;

  display: none;
}

#burger-menu span,
#burger-menu span:after,
#burger-menu span:before {
  background: var(--general-color);

  display: block;

  height: 3px;

  opacity: 1;

  position: absolute;

  transition: 0.3s ease-in-out;
}

#burger-menu span:after,
#burger-menu span:before {
  content: "";
}

#burger-menu span:before {
  left: 0;

  top: -8px;

  width: 27px;
}

#burger-menu span {
  right: 0;

  top: 13px;

  width: 27px;
}

#burger-menu span:after {
  left: 0;

  top: 8px;

  width: 27px;
}

#burger-menu.close span:before {
  top: 0;

  -webkit-transform: rotate(90deg);

  transform: rotate(90deg);

  width: 27px;
}

#burger-menu.close span {
  -webkit-transform: rotate(-45deg);

  transform: rotate(-45deg);

  top: 13px;

  width: 27px;
}

#burger-menu.close span:after {
  top: 0;

  left: 0;

  -webkit-transform: rotate(90deg);

  transform: rotate(90deg);

  opacity: 0;

  width: 0;
}

.footer {
  background-color: var(--general-color);

  padding: 40px 0;
}

.footer__blocks {
  display: flex;

  gap: 10px;

  justify-content: space-between;
}

.footer__blocks .logo {
  position: relative;

  display: block;

  width: 120px;

  margin-bottom: 40px;
}

.footer__blocks .logo p {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;

  text-transform: uppercase;

  font-size: 30px;

  font-weight: 700;

  color: var(--white-color);

  letter-spacing: 4px;

  position: relative;
}

.footer__blocks .logo .logo-name {
  position: absolute;

  top: -10px;

  font-size: 12px;

  font-weight: 600;

  right: 0;

  color: var(--red-color);
}

.footer__blocks .logo .logo-description {
  position: absolute;

  bottom: -7px;

  font-size: 9px;

  font-weight: 500;

  color: var(--grey-color);
}

.footer__blocks .social-media {
  display: flex;

  justify-content: center;

  gap: 15px;
}

.footer__blocks .social-media a {
  display: flex;

  background: #e3edf7;

  height: 40px;

  width: 40px;

  border-radius: 8px;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: -webkit-transform 0.5s;

  transition: transform 0.5s;

  transition: transform 0.5s, -webkit-transform 0.5s;
}

.footer__blocks .social-media a i {
  font-size: 22px;

  color: #777;

  transition: -webkit-transform 0.5s;

  transition: transform 0.5s;

  transition: transform 0.5s, -webkit-transform 0.5s;
}

.footer__blocks .social-media a:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0 #fff,
    0.5px 0.5px 0 rgba(0, 0, 0, 0.15), 0 12px 10px -10px rgba(0, 0, 0, 0.05);

  border: 1px solid rgba(0, 0, 0, 0.01);

  -webkit-transform: translateY(2px);

  transform: translateY(2px);
}

.footer__blocks .social-media a:hover i {
  -webkit-transform: scale(0.9);

  transform: scale(0.9);
}

.footer__blocks .social-media a:hover .fa-facebook {
  color: #3b5998;
}

.footer__blocks .social-media a:hover .fa-instagram {
  color: #f14843;
}

.footer__blocks .social-media a:hover .fa-whatsapp {
  color: #25d366;
}

.footer__mail {
  margin-top: 15px;

  color: #fff;
}

.footer__mail:hover {
  color: var(--red-color);
}

.main {
  position: relative;

  padding-bottom: 100px;

  width: 100%;

  overflow: hidden;
}

.main::after {
  position: absolute;

  right: 0;

  top: 0;

  height: 100%;

  width: 100%;

  content: "";

  background-image: url("assets/img/main/main-bg.webp");

  background-repeat: no-repeat;

  background-size: cover;
}

.main .main__decoration .img-1 {
  position: absolute;

  right: 40%;

  top: 10%;

  z-index: 99;
}

.main .main__decoration .img-3 {
  position: absolute;

  top: 10%;

  z-index: 99;
}

.main .main__decoration .img-2 {
  position: absolute;

  right: 0;

  top: 60%;

  z-index: 99;
}

.main .main__decoration img {
  position: absolute;

  -o-object-fit: contain;

  object-fit: contain;

  transition: -webkit-transform 0.2s ease-out;

  transition: transform 0.2s ease-out;

  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;

  will-change: transform;
}

.main__blocks {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding-top: 80px;
}

.main__info {
  position: relative;

  /* padding-top: 100px; */

  z-index: 9;
}

.main__info .title-top {
  text-transform: uppercase;

  font-weight: 600;

  color: var(--red-color);

  margin-bottom: 25px;
}

.main__info .title {
  font-size: 80px;

  font-weight: 700;

  color: #181e4b;

  margin-bottom: 30px;

  width: 700px;

  line-height: 80px;
}

.main__info .description {
  font-weight: 400;

  color: var(--grey-color);

  line-height: 25px;

  max-width: 570px;

  width: 100%;

  margin-bottom: 35px;
}

.main__info .main-btn {
  background: var(--red-color);

  display: inline-block;

  padding: 15px 25px;

  border: 1px solid var(--red-color);

  position: relative;

  text-align: center;

  transition: all 0.5s ease;

  overflow: hidden;

  border-radius: 7px;

  box-shadow: rgba(0, 0, 0, 0.17) 0 -23px 25px 0 inset,
    rgba(0, 0, 0, 0.15) 0 -36px 30px 0 inset,
    rgba(0, 0, 0, 0.1) 0 -79px 40px 0 inset, rgba(0, 0, 0, 0.06) 0 2px 1px,
    rgba(0, 0, 0, 0.09) 0 4px 2px, rgba(0, 0, 0, 0.09) 0 8px 4px,
    rgba(0, 0, 0, 0.09) 0 16px 8px, rgba(0, 0, 0, 0.09) 0 32px 16px;

  font-size: 18px;

  color: var(--white-color);
}

.main__info .main-btn:before {
  content: "";

  display: block;

  position: absolute;

  background: rgba(255, 255, 255, 0.9);

  width: 60px;

  height: 100%;

  left: 0;

  top: 0;

  opacity: 0.5s;

  -webkit-filter: blur(30px);

  filter: blur(30px);

  -webkit-transform: translateX(-130px) skewX(-15deg);

  transform: translateX(-130px) skewX(-15deg);
}

.main__info .main-btn:after {
  content: "";

  display: block;

  position: absolute;

  background: rgba(255, 255, 255, 0.9);

  width: 30px;

  height: 100%;

  left: 30px;

  top: 0;

  opacity: 0;

  -webkit-filter: blur(30px);

  filter: blur(30px);

  -webkit-transform: translate(-100px) scaleX(-15deg);

  transform: translate(-100px) scaleX(-15deg);
}

.main__info .main-btn:hover {
  background: var(--red-color);

  cursor: pointer;

  color: #fff;
}

.main__info .main-btn:hover:before {
  -webkit-transform: translateX(300px) skewX(-15deg);

  transform: translateX(300px) skewX(-15deg);

  opacity: 1;

  transition: 1s;
}

.main__info .main-btn:hover:after {
  -webkit-transform: translateX(300px) skewX(-15deg);

  transform: translateX(300px) skewX(-15deg);

  opacity: 1;

  transition: 1s;
}

.main__pictures {
  z-index: 9;
}

.main__pictures img {
  width: 100%;
}

.aboutme {
  position: relative;

  padding-bottom: 100px;

  display: flex;

  justify-content: center;

  align-items: center;

  min-height: 100vh;
}

.aboutme::after {
  position: absolute;

  right: 0;

  top: 100px;

  background-image: url("assets/img/main/decore-pluses.webp");

  width: 153px;

  height: 160px;

  content: "";

  z-index: -1;
}

.aboutme .mobile-block {
  display: none;
}

.aboutme__blocks {
  display: flex;

  align-items: center;

  gap: 40px;
}

.aboutme-title {
  font-size: 50px;

  display: flex;

  justify-content: start;

  font-weight: 500;

  color: #181e4b;

  margin-bottom: 50px;
}

.aboutme-picture {
  position: relative;

  width: 300px;

  height: 400px;

  overflow: hidden;
}

.aboutme-picture:hover img {
  -webkit-transform: scale(1.1);

  transform: scale(1.1);
}

.aboutme-picture img {
  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  transition: -webkit-transform 0.3s ease-in-out;

  transition: transform 0.3s ease-in-out;

  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.aboutme__block-right {
  z-index: 99;
}

.aboutme__block-right h3 {
  font-size: 30px;

  font-weight: 500;

  padding-bottom: 10px;

  position: relative;

  margin-bottom: 15px;
}

.aboutme__block-right h3::after {
  position: absolute;

  bottom: 0;

  left: 0;

  width: 70%;

  content: "";

  height: 2px;

  background-color: #f2f2f2;
}

.aboutme__block-right h3 span {
  color: var(--red-color);
}

.aboutme__block-right h4 {
  color: rgba(175, 175, 175, 0.831372549);

  margin-bottom: 10px;
}

.aboutme__block-right h5 {
  margin-top: 15px;

  color: var(--general-color);

  font-weight: 500;
}

.aboutme__block-right ul {
  display: flex;

  flex-direction: column;

  gap: 10px;

  max-width: 550px;

  width: 100%;

  margin-top: 20px;

  padding-left: 40px;
}

.aboutme__block-right li {
  list-style-type: circle;
}

.aboutme__block-right a span {
  color: #00a2ff;

  text-decoration: underline;
}

.offers {
  position: relative;

  padding-top: 100px;

  padding-bottom: 50px;

  background-color: #f2f0f1;
}

.offers i {
  position: absolute;

  right: 300px;

  -webkit-transform: rotate(-50deg);

  transform: rotate(-50deg);

  color: #fff;

  font-size: 50px;

  transition: all 0.5s ease-in-out;

  z-index: 1;
}

.offers i:hover {
  color: #ffcdcd;
}

.offers-title {
  position: relative;

  font-size: 50px;

  display: flex;

  justify-content: center;

  font-weight: 500;

  color: #181e4b;

  margin-bottom: 20px;

  z-index: 2;
}

.offers-subtitle {
  display: flex;

  font-weight: 500;

  margin-bottom: 50px;

  justify-content: center;
}

.offers-subtitle span {
  color: var(--red-color);
}

.offers__blocks {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  justify-content: space-between;

  gap: 30px;
}

.offers__block {
  max-width: 280px;

  width: 100%;

  height: 280px;

  transition: all 0.3s ease-in-out;
}

.offers__block:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.offers__block img {
  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  pointer-events: none;
}

.destinations {
  padding: 100px 0 50px 0;

  position: relative;

  overflow: hidden;
}

.destinations::after {
  position: absolute;

  left: 50px;

  top: 50px;

  height: 250px;

  width: 250px;

  content: "";

  -webkit-transform: rotate(-30deg);

  transform: rotate(-30deg);

  background-image: url(assets//img/main/02.webp);

  background-repeat: no-repeat;

  background-size: contain;

  z-index: -1;
}

.destinations::before {
  position: absolute;

  right: -130px;

  bottom: 0;

  height: 600px;

  width: 400px;

  content: "";

  opacity: 0.3;

  z-index: -1;

  background-image: url(assets//img/main/blue-decor.webp);

  background-repeat: no-repeat;

  background-size: contain;
}

.destinations .offers-title {
  margin-bottom: 30px;
}

.destinations__container {
  max-width: 1040px;

  margin: 0 auto;

  position: relative;
}

.destinations .slider-controls {
  position: absolute;

  z-index: 99;

  display: flex;

  justify-content: space-between;

  width: 100%;

  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  gap: 10px;

  margin-bottom: 15px;
}

.destinations .slider-controls .slider-btn {
  background: var(--red-color);

  border: none;

  padding: 10px 17px;

  border-radius: 50px;

  cursor: pointer;

  font-size: 18px;

  color: #fff;

  opacity: 1;

  pointer-events: auto;

  transition: opacity 0.3s;

  transition: all 0.3s;
}

.destinations .slider-controls .slider-btn.disabled {
  opacity: 0.4;

  pointer-events: none;
}

.destinations .slider-controls .slider-btn:hover {
  background-color: #c45a45;
}

.destinations__viewport {
  position: relative;

  overflow: hidden;

  width: 100%;

  display: flex;
}

.destinations__blocks {
  padding: 20px;

  display: flex;

  gap: 35px;

  transition: -webkit-transform 0.4s ease;

  transition: transform 0.4s ease;

  transition: transform 0.4s ease, -webkit-transform 0.4s ease;

  will-change: transform;
}

.destinations__block {
  flex: 0 0 auto;

  width: 300px;

  height: 420px;

  border-radius: 16px;
}

.destinations__block:hover .card-inner {
  -webkit-transform: rotateY(180deg);

  transform: rotateY(180deg);
}

.destinations__block img {
  width: 100%;

  border-radius: 16px 16px 0 0;

  height: 300px;

  -o-object-fit: cover;

  object-fit: cover;
}

.destinations .card-inner {
  position: relative;

  width: 100%;

  height: 100%;

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;

  transition: -webkit-transform 0.8s;

  transition: transform 0.8s;

  transition: transform 0.8s, -webkit-transform 0.8s;

  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
}

.destinations .card-back,
.destinations .card-front {
  position: absolute;

  width: 100%;

  height: 100%;

  -webkit-backface-visibility: hidden;

  backface-visibility: hidden;

  border-radius: 15px;

  overflow: hidden;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.destinations .card-back {
  background: linear-gradient(90deg, #747def 0, #5e3be1 100%);

  color: #fff;

  -webkit-transform: rotateY(180deg);

  transform: rotateY(180deg);

  display: flex;

  flex-direction: column;

  gap: 15px;

  text-align: center;

  padding: 25px 20px 20px 20px;
}

.destinations .card-back h3 {
  font-weight: 500;

  color: #fff;
}

.destinations .card-back p {
  color: #fff;

  font-size: 14px;
}

.destinations .card-front {
  background: #fff;
}

.destinations__info {
  display: flex;

  flex-direction: column;

  gap: 30px;

  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;

  height: 120px;

  border-radius: 0 0 16px 16px;

  padding: 25px 20px 40px 20px;
}

.destinations__info a,
.destinations__info h1,
.destinations__info h2,
.destinations__info h3,
.destinations__info p,
.destinations__info span {
  color: #5e6282;
}

.destinations__info i {
  color: #080809;
}

.destinations__info-top {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.destinations__info-top .name {
  width: 100px;

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis;

  font-weight: 500;
}

.destinations__info-bottom {
  display: flex;

  align-items: center;

  gap: 15px;
}

.destinations__info-bottom p {
  font-size: 14px;
}

.reviews {
  position: relative;

  padding: 150px 0;

  overflow: hidden;
}

.reviews::after {
  position: absolute;

  left: -80px;

  top: 40px;

  height: 600px;

  width: 400px;

  content: "";

  z-index: -1;

  background-image: url(../img/main/purple-decor.webp);

  background-repeat: no-repeat;

  background-size: contain;

  -webkit-transform: rotate(-40deg);

  transform: rotate(-40deg);
}

.reviews__blocks {
  display: flex;

  justify-content: space-between;

  gap: 10px;
}

.reviews__title {
  font-size: 50px;

  font-weight: 500;

  color: #181e4b;

  margin-bottom: 50px;

  max-width: 450px;

  width: 100%;
}

.reviews__wrapper {
  position: relative;

  overflow: hidden;

  border-radius: 16px;

  max-width: 550px;

  width: 100%;

  background-color: #fff;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

  border: 4px solid var(--red-color);

  border-bottom: 0;
}

.reviews__track {
  display: flex;

  transition: -webkit-transform 0.5s ease;

  transition: transform 0.5s ease;

  transition: transform 0.5s ease, -webkit-transform 0.5s ease;

  align-items: start;

  width: 100%;

  -ms-scroll-snap-type: x mandatory;

  scroll-snap-type: x mandatory;

  overflow-x: auto;

  scroll-behavior: smooth;

  gap: 10px;

  padding-bottom: 10px;
}

.reviews__track::-webkit-scrollbar {
  height: 8px;
}

.reviews__track::-webkit-scrollbar-track {
  background: #e0e0e0;

  border-radius: 10px;
}

.reviews__track::-webkit-scrollbar-thumb {
  background-color: var(--red-color);

  border-radius: 10px;

  border: 2px solid #e0e0e0;
}

.reviews__item {
  flex: 0 0 100%;

  scroll-snap-align: center;

  box-sizing: border-box;

  padding: 20px;

  background-color: #fff;

  text-align: center;

  border-radius: 16px;

  margin: 0 auto;

  margin: 10px 0;
}

.reviews__avatar {
  width: 80px;

  height: 80px;

  border-radius: 50%;

  -o-object-fit: cover;

  object-fit: cover;
}

.reviews__name {
  margin: 10px 0 5px;

  font-size: 18px;

  font-weight: 700;
}

.reviews__text {
  font-size: 16px;

  color: #555;

  margin: 10px 0;
}

.reviews__stars {
  color: gold;

  font-size: 20px;
}

.reviews__buttons {
  display: flex;

  align-items: center;

  gap: 15px;
}

.reviews__button {
  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);

  background: var(--red-color);

  color: #fff;

  border: none;

  padding: 9px 15px;

  border-radius: 50%;

  cursor: pointer;

  opacity: 1;

  transition: opacity 0.3s ease;

  z-index: 1;
}

.reviews__button:disabled {
  opacity: 0.4;

  cursor: default;
}

.reviews__button--prev {
  left: 0;
}

.reviews__button--next {
  right: 10px;
}

.contacts {
  margin-bottom: 50px;
}

.contacts__blocks {
  position: relative;

  padding: 75px 0;

  background-color: #dfd7f9;

  border-radius: 50px 0 0 0;
}

.contacts__blocks .decore-btn {
  position: absolute;

  z-index: 9;

  right: -30px;

  top: -30px;

  width: 70px;

  height: 70px;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  display: flex;

  background: linear-gradient(90deg, #747def 0, #5e3be1 100%);

  transition: -webkit-transform 0.2s ease-in-out;

  transition: transform 0.2s ease-in-out;

  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.contacts__blocks .decore-btn:hover {
  -webkit-transform: scale(1.1);

  transform: scale(1.1);
}

.contacts__blocks .decore-btn::before {
  content: "";

  position: absolute;

  background-image: url(assets/img/svg/send-icon.svg);

  z-index: 9;

  width: 35px;

  height: 40px;

  display: flex;

  padding-left: 40px;

  margin-right: -5px;

  align-items: center;

  justify-content: center;

  background-size: contain;

  background-repeat: no-repeat;
}

.contacts__blocks::after {
  position: absolute;

  top: 0;

  right: 0;

  background-image: url(assets/img/main/contacts-design.webp);

  content: "";

  width: 260px;

  height: 350px;

  z-index: 1;
}

.contacts__title {
  font-weight: 500;

  color: #5e6282;

  font-size: 33px;

  text-align: center;

  max-width: 850px;

  width: 100%;

  margin: 0 auto;

  margin-bottom: 50px;
}

.contacts form {
  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  max-width: 550px;

  width: 100%;

  margin: 0 auto;

  gap: 30px;

  padding: 0 20px;
  /* wpcf7-form */
  z-index: 9;

  position: relative;
}

form {
  padding: 0 20px;
}

.contacts form label {
  color: var(--general-color);

  font-weight: 600;

  font-size: 12px;
}

.contacts__input {
  display: flex;

  flex-direction: column;

  gap: 5px;

  max-width: 420px;

  width: 100%;
}

.contacts__input input,
.contacts__input textarea {
  background-color: #fff;

  max-width: 420px;

  width: 100%;

  border-radius: 8px;

  padding: 20px 15px;

  outline: 0;
}

.contacts__input textarea {
  resize: none;

  height: 180px;
}

.contacts__submit {
  background-color: var(--red-color);

  color: #fff;

  padding: 20px 50px;

  border-radius: 16px;
  background-color: var(--red-color);
  transition: background-color 0.3s ease-in-out;
}

.contacts__submit:hover {
  background-color: #c45a45;
}

.blog {
  margin-top: 90px;
}

.blog__top {
  background-color: #5e6282;
  padding: 100px 0;
  position: relative;
  text-transform: uppercase;
}

/* .blog__top::after {

  position: absolute;

  left: 0;

  top: 0;

  content: "";

  background-image: url("/assets/img/main/baner-blog.jpg");

  width: 100%;

  height: 100%;

  background-repeat: no-repeat;

  background-size: cover;

  z-index: 9;

} */

.blog-title {
  font-size: 80px;

  font-weight: 700;

  color: #fff;

  margin: 0 auto;

  display: flex;
  text-transform: uppercase;
  justify-content: center;

  text-transform: uppercase;

  position: relative;

  z-index: 9;
}

.blog__blocks {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  -webkit-column-gap: 15px;

  -moz-column-gap: 15px;

  column-gap: 15px;

  row-gap: 15px;

  padding: 50px 0 20px 0;

  position: relative;

  margin-bottom: 50px;
}

.blog__blocks::after {
  position: absolute;

  content: "";

  left: 0;

  width: 100%;

  border: 1px solid rgba(94, 98, 130, 0.2156862745);

  bottom: 0;
}

.blog__block {
  max-width: 300px;

  width: 100%;

  border-radius: 4px;

  padding: 10px;

  background-color: #fff;

  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;

  transition: all 0.3s ease-in-out;
}

.blog__block:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
}

.blog__block:hover .blog__picture img {
  -webkit-transform: scale(1.1);

  transform: scale(1.1);
}

.blog__picture {
  overflow: hidden;

  max-width: 273px;

  width: 100%;

  height: 182px;

  transition: all 0.3s ease-in-out;
}

.blog__picture img {
  transition: all 0.3s ease-in-out;

  width: 100%;

  height: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  border-radius: 8px;
}

.blog__info {
  padding: 15px 0 20px 0;
}

.blog__info .name {
  color: var(--general-color);

  font-size: 18px;

  font-weight: 500;

  max-width: 250px;

  width: 100%;

  display: -webkit-box;

  -webkit-line-clamp: 2;

  -webkit-box-orient: vertical;

  overflow: hidden;

  text-overflow: ellipsis;

  margin-bottom: 10px;
}

.blog__info .data {
  font-weight: 400;

  font-size: 12px;

  color: var(--red-color);

  margin-bottom: 5px;
}

.blog__info .descript {
  margin-top: 15px;

  font-size: 14px;

  color: #5e6282;
}

.pagination {
  display: flex;

  justify-content: center;

  margin-bottom: 50px;
}

.pagination .nav-links {
  display: flex;

  transition: all 0.2s ease-in-out;

  align-content: center;

  gap: 15px;
}

.pagination .page-numbers {
  min-width: 50px;

  width: 100%;

  height: 50px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid #dcdcdc;

  transition: all 0.2s ease-in-out;

  outline: none;
}

.pagination .nav-links a {
  transition: all 0.2s ease-in-out;
}

.pagination .page-numbers:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;

  font-weight: 500;

  color: var(--general-color);

  background-color: var(--white-color);

  border: none;
}

.pagination .next,
.pagination .prev {
  width: 100%;

  min-width: 120px;

  height: 100%;
}

.pagination .current {
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;

  font-weight: 500;

  color: var(--general-color);

  background-color: var(--white-color);

  border: none;

  transition: all 0.2s ease-in-out;
}

.pagination a {
  transition: all 0.2s ease-in-out;

  color: var(--general-color);
}

.blog-single {
  margin-top: 70px;
}

.blog-single .blog-title {
  font-size: 30px;

  font-weight: 700;

  color: #fff;

  margin: 0 auto;

  display: flex;

  justify-content: center;

  text-transform: none;
  text-transform: uppercase;
  padding: 0 15px;

  max-width: 1000px;

  width: 100%;

  text-align: center;
}

.blog-single__blocks {
  padding: 50px 0 0 0;

  margin-bottom: 50px;
}

.blog-single__blocks h2 {
  color: var(--general-color);

  font-weight: 600;

  margin-bottom: 10px;
}

.blog-single__blocks h3 {
  color: var(--grey-color);

  font-size: 14px;
}

.blog-single__blocks span {
  color: var(--red-color);

  font-weight: 500;

  font-size: 12px;
}

.blog-single__blocks p {
  font-size: 16px;
}

.blog-single__blocks .return-btn {
  background: var(--red-color);

  display: inline-block;

  padding: 12px 25px;

  border: 1px solid var(--red-color);

  position: relative;

  text-align: center;

  transition: all 0.5s ease;

  overflow: hidden;

  border-radius: 7px;

  margin-top: 20px;

  font-size: 14px;

  color: var(--white-color);
}

.blog-single__blocks .return-btn:before {
  content: "";

  display: block;

  position: absolute;

  background: rgba(255, 255, 255, 0.9);

  width: 60px;

  height: 100%;

  left: 0;

  top: 0;

  opacity: 0.5s;

  -webkit-filter: blur(30px);

  filter: blur(30px);

  -webkit-transform: translateX(-130px) skewX(-15deg);

  transform: translateX(-130px) skewX(-15deg);
}

.blog-single__blocks .return-btn:after {
  content: "";

  display: block;

  position: absolute;

  background: rgba(255, 255, 255, 0.9);

  width: 30px;

  height: 100%;

  left: 30px;

  top: 0;

  opacity: 0;

  -webkit-filter: blur(30px);

  filter: blur(30px);

  -webkit-transform: translate(-100px) scaleX(-15deg);

  transform: translate(-100px) scaleX(-15deg);
}

.blog-single__blocks .return-btn:hover {
  background: var(--red-color);

  cursor: pointer;

  color: #fff;
}

.blog-single__blocks .return-btn:hover:before {
  -webkit-transform: translateX(300px) skewX(-15deg);

  transform: translateX(300px) skewX(-15deg);

  opacity: 1;

  transition: 1s;
}

.blog-single__blocks .return-btn:hover:after {
  -webkit-transform: translateX(300px) skewX(-15deg);

  transform: translateX(300px) skewX(-15deg);

  opacity: 1;

  transition: 1s;
}

.social-sidebar {
  position: fixed;

  top: 30%;

  right: 10px;

  z-index: 999;
}

.social-sidebar .social-media {
  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 15px;
}

.social-sidebar .social-media a {
  display: flex;

  background: #e3edf7;

  height: 40px;

  width: 40px;

  border-radius: 8px;

  align-items: center;

  justify-content: center;

  text-decoration: none;

  transition: -webkit-transform 0.5s;

  transition: transform 0.5s;

  transition: transform 0.5s, -webkit-transform 0.5s;

  box-shadow: inset 4px 4px 6px -1px rgba(0, 0, 0, 0.2),
    inset -4px -4px 6px -1px rgba(255, 255, 255, 0.7), -0.5px -0.5px 0 #fff,
    0.5px 0.5px 0 rgba(0, 0, 0, 0.15), 0 12px 10px -10px rgba(0, 0, 0, 0.05);

  border: 1px solid rgba(0, 0, 0, 0.01);

  -webkit-transform: translateY(2px);

  transform: translateY(2px);
}

.social-sidebar .social-media a i {
  font-size: 22px;

  color: #777;

  transition: -webkit-transform 0.5s;

  transition: transform 0.5s;

  transition: transform 0.5s, -webkit-transform 0.5s;
}

.social-sidebar .social-media a:hover i {
  -webkit-transform: scale(0.9);

  transform: scale(0.9);
}

.social-sidebar .social-media a:hover .fa-facebook {
  color: #3b5998;
}

.social-sidebar .social-media a:hover .fa-instagram {
  color: #f14843;
}

.social-sidebar .social-media a:hover .fa-whatsapp {
  color: #25d366;
}

@media (max-width: 1200px) {
  .main__info .title-top {
    margin-bottom: 15px;
  }

  .main__info .title {
    font-size: 50px;

    margin-bottom: 20px;

    line-height: 50px;

    max-width: 600px;

    width: 100%;
  }

  .main__info .description {
    margin-bottom: 20px;

    font-size: 14px;
  }

  .main__info .main-btn {
    padding: 12px 20px;

    font-size: 16px;
  }

  .blog-title {
    font-size: 50px;

    margin-bottom: 20px;

    line-height: 50px;

    max-width: 600px;

    width: 100%;
  }

  .blog-single .blog-title {
    font-size: 25px;

    margin-bottom: 20px;

    line-height: 30px;

    max-width: 600px;

    width: 100%;
  }

  .blog-single__blocks .return-btn {
    padding: 12px 20px;

    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .header__info {
    gap: 30px;
  }

  .menu__list {
    gap: 30px;
  }

  .aboutme::after {
    top: 0;

    width: 100px;

    height: 110px;
  }

  .aboutme .mobile-none {
    display: none;
  }

  .aboutme .mobile-block {
    display: block;

    margin-bottom: 25px;
  }

  .aboutme__blocks {
    gap: 0;
  }

  .aboutme-title {
    font-size: 35px;

    margin-bottom: 30px;
  }

  .aboutme-picture {
    width: 250px;

    height: 300px;
  }

  .aboutme__block-right h3 {
    font-size: 22px;

    margin-bottom: 5px;
  }

  .offers i {
    top: 25px;

    right: 100px;
  }

  .offers-title {
    font-size: 35px;
  }

  .offers__blocks {
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
  }

  .reviews__blocks {
    flex-direction: column;
  }

  .reviews__blocks-top {
    display: flex;

    flex-direction: row;

    justify-content: space-between;
  }

  .reviews__title {
    font-size: 35px;

    margin-bottom: 30px;
  }

  .contacts__blocks .decore-btn {
    display: none;
  }

  .contacts__blocks .decore-btn::before {
    display: none;
  }

  .contacts__title {
    font-size: 25px;

    margin-bottom: 40px;

    max-width: 750px;
  }

  .contacts__input input,
  .contacts__input textarea {
    font-size: 14px;

    padding: 15px 12px;
  }

  .contacts__submit {
    font-size: 14px;
    background-color: var(--red-color);
    padding: 18px 40px;
  }

  .blog__blocks {
    -webkit-column-gap: 10px;

    -moz-column-gap: 10px;

    column-gap: 10px;

    row-gap: 10px;
  }

  .blog__picture {
    height: 130px;
  }

  .blog__info .name {
    font-size: 14px;
  }

  .blog__info .data {
    font-size: 10px;
  }

  .blog__info .descript {
    font-size: 12px;

    margin-top: 10px;
  }

  .social-sidebar {
    top: auto;

    bottom: 15px;
  }
}

@media (max-width: 840px) {
  .main::after {
    display: none;
  }

  .main .main__decoration .img-1 {
    width: 130px;

    height: 100px;
  }

  .main .main__decoration .img-2 {
    width: 140px;

    height: 115px;
  }

  .main__pictures {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__info {
    z-index: 1;

    min-width: 100%;

    min-height: 100%;

    position: fixed;

    top: 0;

    left: 50%;

    -webkit-transform: translateX(-50%);

    transform: translateX(-50%);

    opacity: 0;

    visibility: hidden;

    flex-direction: column;

    text-align: center;

    background: #fff;
  }

  .header__info ul {
    padding: 0;

    flex-direction: column;
  }

  .header__info.overlay {
    opacity: 1;

    visibility: visible;

    height: 100%;

    padding-top: 150px;

    background: #fff;

    transition: opacity 0.5s ease-in-out;
  }

  .header__info.overlay li {
    list-style: none;
  }

  #burger-menu {
    display: block;
  }

  .blog__blocks {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 756px) {
  .offers__blocks {
    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    justify-items: center;
  }
}

@media (max-width: 576px) {
  .footer__blocks {
    flex-direction: column;

    align-items: center;

    gap: 0;
  }

  .main {
    padding-bottom: 70px;
  }

  .main .main__decoration .img-1 {
    display: none;
  }

  .main .main__decoration .img-2 {
    display: none;
  }

  .main__blocks {
    padding-top: 80px;
  }

  .main__info .title-top {
    font-size: 12px;

    margin-bottom: 5px;
  }

  .main__info .title {
    font-size: 30px;

    line-height: 40px;

    max-width: 400px;

    width: 100%;

    margin-bottom: 10px;
  }

  .main__info .description {
    font-size: 12px;

    line-height: 20px;

    margin-bottom: 15px;

    max-width: 400px;

    width: 100%;
  }

  .aboutme-title {
    font-size: 25px;

    margin-bottom: 15px;
  }

  .aboutme-picture {
    display: flex;

    margin: 0 auto;
  }

  .aboutme__block-right h3 {
    font-size: 18px;
  }

  .aboutme__block-right h3::after {
    height: 1px;
  }

  .aboutme__block-right p {
    font-size: 14px;
  }

  .aboutme__block-right h4 {
    font-size: 14px;
  }

  .aboutme__block-right h5 {
    font-size: 14px;
  }

  .aboutme__block-right ul {
    font-size: 14px;

    margin-top: 15px;
  }

  .aboutme__block-right a {
    font-size: 14px;
  }

  .offers {
    padding-top: 50px;
  }

  .offers i {
    font-size: 35px;
  }

  .offers-title {
    font-size: 25px;

    margin-bottom: 15px;
  }

  .offers-subtitle {
    font-size: 14px;

    margin-bottom: 35px;
  }

  .offers__block {
    max-width: 220px;

    width: 100%;

    height: 220px;
  }

  .destinations::after {
    width: 170px;

    height: 170px;

    top: 10px;

    -webkit-transform: rotate(0);

    transform: rotate(0);
  }

  .destinations::before {
    display: none;
  }

  .destinations {
    padding: 50px 0;
  }

  .destinations .offers-title {
    margin-bottom: 10px;
  }

  .destinations .slider-controls .slider-btn {
    font-size: 14px;

    padding: 8px 13px;
  }

  .destinations__blocks {
    padding: 20px 0;

    gap: 15px;
  }

  .destinations__block {
    width: 250px;

    height: 350px;
  }

  .destinations__block img {
    height: 250px;
  }

  .destinations .card-back h3 {
    font-size: 14px;
  }

  .destinations .card-back p {
    font-size: 12px;
  }

  .destinations__info {
    height: 100px;

    gap: 20px;
  }

  .destinations__info-top .name {
    font-size: 14px;
  }

  .destinations__info-top .price {
    font-size: 12px;
  }

  .destinations__info-bottom {
    gap: 8px;
  }

  .destinations__info-bottom i {
    font-size: 15px;
  }

  .destinations__info-bottom p {
    font-size: 12px;
  }

  .reviews {
    padding: 80px 0 100px 0;
  }

  .reviews__title {
    font-size: 25px;

    margin-bottom: 15px;
  }

  .reviews__avatar {
    width: 60px;

    height: 60px;
  }

  .reviews__name {
    font-size: 16px;
  }

  .reviews__text {
    font-size: 14px;
  }

  .reviews__stars {
    font-size: 16px;
  }

  .contacts__blocks {
    padding: 50px 0;
  }

  .contacts__blocks .decore-btn::before {
    width: 15px;

    height: 25px;

    margin-right: -18px;
  }

  .contacts__title {
    font-size: 18px;

    max-width: 400px;

    margin-bottom: 30px;
  }

  .contacts form {
    gap: 20px;
  }

  .contacts form label {
    font-size: 10px;
  }

  .contacts__input input,
  .contacts__input textarea {
    font-size: 12px;
  }

  .contacts__submit {
    font-size: 12px;
    background-color: var(--red-color);
  }

  .blog-title {
    font-size: 30px;

    line-height: 40px;

    max-width: 400px;

    width: 100%;

    margin-bottom: 10px;
  }

  .blog__blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .pagination ul {
    gap: 10px;
  }

  .pagination li {
    width: 40px;

    height: 40px;
  }

  .pagination a {
    font-size: 14px;
  }

  .blog-single .blog-title {
    font-size: 20px;

    line-height: 30px;

    justify-content: start;

    text-align: left;
  }

  .blog-single__blocks p {
    font-size: 14px;
  }

  form .wpcf7-response-output {
    margin: 0;
  }
}

@media (max-width: 420px) {
  .offers__blocks {
    gap: 5px;
  }

  .offers__block {
    max-width: 180px;

    width: 100%;

    height: 180px;
  }
}

@media (max-width: 375px) {
  .blog__blocks {
    grid-template-columns: repeat(1, 1fr);

    justify-items: center;
  }

  .blog__block {
    max-width: 220px;

    width: 220px;
  }
}

@media (max-width: 360px) {
  .offers-subtitle {
    font-size: 10px;

    margin-bottom: 25px;

    justify-content: start;
  }

  .offers__blocks {
    grid-template-columns: repeat(1, 1fr);
  }

  .offers__block {
    max-width: 220px;

    width: 100%;

    height: 220px;
  }
}
