@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --first-color: #2e2e41;
  --second-color: #5b85ff;
  --third-color: #434354;
  --text-color: #fff;
  --box-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
  --text-shadow: 0 5px 25px rgb(2, 2, 2, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.tab__bar {
  position: relative;
  margin: 0px 10px 30px 10px;
}
.tab__bar .tab__navigation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.tab__bar .tab__menu {
  color: var(--text-color);
  list-style: none;
  max-width: 1000px;
  white-space: nowrap;
  scroll-behavior: smooth;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow-x: auto;
}
.tab__bar .tab__menu.dragging {
  scroll-behavior: unset;
  cursor: -webkit-grab;
  cursor: grab;
}
.tab__bar .tab__menu.dragging .tab-btn {
  pointer-events: none;
}
.tab__bar .tab__menu::-webkit-scrollbar {
  display: none;
}
.tab__bar .tab__menu .tab__btn {
  display: inline-block;
  color: rgba(40, 99, 45, 0.6);
  font-size: 1em;
  font-weight: 900;
  margin: 0 2px;
  padding: 10px 20px;
  border-radius: 0px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: background-color 0.3s ease;
}
.tab__bar .tab__menu .tab__btn:hover {
  color: #FEDE1C;
  border-bottom: 1px solid var(--main-color);
}
.tab__bar .tab__menu .tab__btn.active {
  color:#28632D;
  border-bottom: 1px solid #FEDE1C;
  border-radius: 0;
}
.tab__bar .left__btn,
.tab__bar .right__btn {
  position: absolute;
  color: var(--text-color);
  font-size: 1.8em;
  cursor: pointer;
  margin-left: -20px;
}
.tab__bar .left__btn svg,
.tab__bar .right__btn svg {
  width: 20px;
  height: 20px;
  margin-right: -20px;
}
.tab__bar .left__btn svg path,
.tab__bar .right__btn svg path {
  fill: #28632D;
}
.tab__bar .left__btn {
  display: none;
  left: -5px;
  background: linear-gradient(to left, transparent, var(--main-color) 100%);
  padding: 0px 30px 10px 0;
}
.tab__bar .right__btn {
  right: -5px;
  background: linear-gradient(to right, transparent, var(--main-color) 100%);
  padding: 0px 0 10px 30px;
}

.tab__content {
  position: relative;
}
.tab__content .tab {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  display: none;
  -webkit-animation: fadein 0.8s;
          animation: fadein 0.8s;
}
.tab__content .tab.active {
  /*display: flex;*/
  display: block;
}
/*.tab__content .tab .row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .tab__content .tab .row {
    flex-direction: column;
  }
}*/

.tab__content .left-column,
.tab__content .right-column {
  width: 50%;
  max-width: 500px;
}
@media (max-width: 767px) {
  .tab__content .left-column,
.tab__content .right-column {
    width: 100%;
    max-width: 700px;
  }
}
.tab__content .left-column {
  display: flex;
  align-items: center;
}
.tab__content .left-column .img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-shadow);
}
.tab__content .left-column .img-card img {
  width: 100%;
}
.tab__content .info .city {
  margin-bottom: 15px;
  font-size: 32px;
}
.tab__content .info .description {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .tab__content .info .description {
    text-align: justify;
  }
}
.tab__content .info .city, .tab__content .info .description {
  color: var(--text-color);
}
@media (max-width: 767px) {
  .tab__content .info .city, .tab__content .info .description {
    text-align: center;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}