.popup-box {
  width: 100%;
  height: 100%;
  background-color: #222222a1;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 6;
  display: none;
}

.box-active {
  display: block;
  animation: scale-up 500ms;
  transition: all 500ms ease-in;
  z-index: 8;
}

.popup-container {
  position: relative;
  width: 40%;
  height: calc(100vh - 40px);
  margin: 20px auto;
}

.box-active .img-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 1;
  animation: top-center 300ms;
  transition: all 500ms ease-in;
}

@keyframes top-center {
  0%{
    transform: translateY(-10000px);
  }
  100%{
        transform: translateY(0);
  }

}



.box-active .img-box img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border: 4px solid #fff;
  position: relative;
  overflow: scroll;
  transition: all 500ms ease-in;
}

.box-active .img-box img:hover {
  transform: scale(1.2);
  transition: all 500ms ease-in;
}

.box-active .close-btn {
  position: absolute;
  right: -30px;
  top: 10px;
  cursor: pointer;
}

.box-active .close-btn img {
  width: 25px;
  height: 25px;
  border: 2px solid #fff;
  border-radius: 50%;
}

@keyframes scale-up {
  0 {
    transform: scale(1);
  }
}

.page-header-section {
  height: auto;
  position: relative;
  background-color: #222;
}

.page-top-nav {
  background-color: #222;
  padding-left: 8px;
  padding-right: 8px;
}

.page-links-nav {
  background-color: #f9520b;
}

.page-links-nav ul li a:hover {
  color: #222;
}

.page-package-section {
  display: flex;
  justify-content: center;
}

.page-package-section .main-img {
  width: 55%;
  display: flex;
  flex-direction: column;
  padding: 25px;
  padding-left: 0;
}

.page-package-section .main-img img {
  width: 100%;
}

.page-package-section .product-side-descr {
  width: 45%;
  display: flex;
  flex-direction: column;
  padding: 15px;
  padding-top: 25px;
}

.package-name {
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.price-txt {
  display: flex;
  justify-content: space-between;
}

.price-txt h6 {
  font-size: .8rem;
  margin-bottom: 35px;
  color: #727695;
  font-weight: 400;
}

.price-txt span {
  font-weight: 500;
  position: relative;
}

.ext-txt {
  display: flex;
  align-items: center;
}

.ext-txt img {
  width: 18px;
  margin-right: 8px;
}

.ext-txt p {
  font-size: .8rem;
  padding: 0;
  line-height: 1.6;
}

.ext-txt a {
  color: #0c59db;
}

.ext-txt span {
  font-size: 0.7rem;
}

.package-contact-btn {
  margin: 20px 0;
}

.product-side-descr .rent-btn{
  background-color: transparent;
  padding: 0;
}

.package-contact-btn a button {
      width: 150px;
max-width: 200px;
  padding: 10px;
  border-radius: 0;
  border: none;
  color: #fff;
}

.package-contact-btn a button:hover {
  background-color: #dd4809;
}

.low {
  color: #f9520b;
}

.heigh {
  color: #ff9800;
}

.price-low {
  border-left: 3px solid #f9520b;
  padding: 8px;
  background-color: #ebe4e4;
}

.price-heigh {
  border-left: 3px solid #ff9800;
  padding: 8px;
  background-color: #ebebeb;
}

.package-desc {
  margin-bottom: 50px;
}

.package-desc p {
  font-size: .8rem;
  line-height: 1.8;
}

.tab-section {
  display: flex;
  align-items: center;
}

.tab-section .tab-item {
  padding: 8px;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: 50px;
  cursor: pointer;
}

.tab-section .active {
  background-color: #f9520b;
  box-shadow: 0 2px 12px -2px #f9520b;
}

.tab-section .active h6 {
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  transition: all 300ms ease-in;
}

.tab-section .tab-item h6 {
  font-size: .7rem;
  color: #727695;
  font-weight: normal;
}

.descr-item {
  display: none;
  padding: 12px;
  overflow: hidden;
  margin-bottom: 50px;
  background-color: #f7f7f7;
}

.descr-item li, p {
  font-size: .8rem;
  padding: 8px 0;
  color: #727695;
  line-height: 1.8;
}

.tab-descr-section .active {
  display: flex;
  animation: tab-text 800ms;
}

@keyframes tab-text {
  0% {
    min-height: 0;
    opacity: 0;
    /* transform: translateY(10000px); */
  }

  100% {
    min-height: 100%;
    opacity: 1;
    /* transform: translateY(0px); */
  }
}

.other-packages {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  border-top: 1px solid #efefef;
  padding-top: 20px;
  overflow:
}

.other-packages .pkg-item {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  margin-right: 20px;
  box-shadow: 0 2px 12px -2px #d3d3d3;
  border-radius: 8px;
}

.other-packages .pkg-item:hover {
  box-shadow: 0 2px 12px -2px #a1a1a1;
}

.other-packages .pkg-item img {
  width: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.other-packages .pkg-item .pkg-descr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.other-packages .pkg-item .pkg-descr h6 {
  font-size: 1rem;
}

.other-packages .pkg-item .pkg-descr span {
  background-color: #f9520b;
  font-size: .8rem;
  color: #fff;
  padding: 12px;
  white-space: nowrap;
  border-radius: 50px;
}

.page-txt-section {
  margin: 50px 0;
}

.page-txt-section h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.page-txt-section ul li {
  padding: 8px 0;
  font-size: .8rem;
  color: #727695;
}

.page-txt-section ul li a {
  font-size: .8rem;
}

.page-txt-section .list-style{
  padding-left: 8px;
}

.page-side-by {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 12px 0;
  padding: 20px;
}

.side-img {
  width: 50%;
  box-shadow: 0 2px 12px -3px gray;
  border-radius: 8px;
  position: relative;
}

.side-img img {
  width: 100%;
  padding: 8px;
  transition: all 800ms ease-in;
}

.side-img img:hover {
  transform: scale(1.05);
}

.side-img:hover::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #222;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0.7;
  animation: fade-in 500ms;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
}

.zoom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.zoom-btn img {
  width: 50px;
  cursor: pointer;
}

.zoom-btn img:hover {
  transform: scale(1.5);
}

.review-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 50px 0;
}

.review-item {
  width: 25%;
  margin: 0 15px 15px 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dddcdc;
}

.review-item img {
  width: 100%;
  cursor: pointer;
  transition: all 500ms ease-in;
}

.review-item img:hover {
  opacity: 0.7;
  transform: scale(1.1);
}

.review-descr {
  padding: 20px;
}

.view-box {
  display: none;
  width: 100%;
  height: 100%;
  background-color: #22222280;
  position: fixed;
  top: 0;
}

.view-item-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 40%;
  height: calc(100vh - 50px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 500ms ease-in;
}

.view-box-active {
  display: block;
}

.close {
  position: absolute;
  right: -50px;
  cursor: pointer;
}

.more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  font-size: 1.4rem;
}

.more .more-icons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.more .more-icons {
  width: 50px;
  height: 50px;
  margin-top: 20px;
  margin-right: 20px;
}

.more .more-icons img {
  width: 100%;
}

.contact-form-wrapper {
  margin: 80px 0;
  display: flex;
  box-shadow: 0 2px 20px -2px #222;
  border-radius: 8px;
  background-image: url(../img/contact-us-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.form-side {
  display: flex;
  padding: 20px;
}

.contact-form-wrapper .form-area {
  position: relative;
}

.contact-form-wrapper .form-area::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.9;
  background-color: #222;
}

.form-side:first-child {
  width: 55%;
}

.form-side:last-child {
  width: 45%;
}

.form-side .row-form {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.page-form .side-section-form{
  background-color: #222222e3;
}

.page-form select{
padding:14px;
color: #959595;
}

.page-form textarea{
  margin-right: 0;
}

.form-side .row-form input {
  width: 50%;
  z-index: 5;
}

.row-form textarea {
  width: 100%;
  z-index: 5;
}

.select-half input {
  width: 40%;
}

.row-form button {
  z-index: 5;
}

.form-side {
  position: relative;
}

.form-side .row-form input, select, textarea, checkbox, label {
  font-size: .8rem;
  color: #fff;
  font-weight: 500;
  font-family: roboto;
  z-index: 5;
}

.form-side select, date {
  color: #757575 !important;
}

.form-side .row-form input, select, textarea, checkbox {
  padding: 8px;
  margin-right: 8px;
}

.lable-block lable {
  white-space: nowrap;
}

.form-side .row-form input{
    color: #000000;
}

.check-box-ext checkbox {
  margin-left: 12px;
}

.check-box-normal checkbox {
  width: 100px !important;
}

.visibility-form {
  display: none;
  width: 100%;
}

.visibility-form lable {
  display: flex;
  width: 100%;
}

.visibility-active {
  display: flex;
}

.center-eve {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-eve h6 {
  width: 100%;
  background-color: #222222ab;
  padding: 12px;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.center-eve span {
  white-space: nowrap;
  color: #f9520b;
}

.collapse{
  display: none;
  flex-direction: column;
  width: 100%;
}

.collapse .collapse-item{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

.collapse .collapse-item .collapse-header{
  width: 100%;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
      box-shadow: 0 2px 12px -2px #d7d7d7;
  border-radius: 4px;
  margin-bottom: 8px;
  cursor: pointer;
}
.collapse-item .collapse-header{
font-size: 1.4rem !important;
font-weight: 500 !important;
}

.collapse-icon{
  width: 40px;
  height: 40px;
  transition: all 500ms ease-in;
}

.collapse-icon img{
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}


.collapse-descr{
  background-color: #f7f7f7;
  padding:0 8px;
transform: translateY(-5000px);
height: 0;
}

.collapse-descr li, p {
    font-size: .8rem;
    padding: 8px 0;
    color: #727695;
    line-height: 1.8;
}

.collapse-item-active{
  transition: all 500ms ease-in;
}
.collapse-item-active img{
  transform: rotate(0deg);
}

.collapse-item-active .collapse-descr{
  transform: translateY(0px);
  height: 100%;
}
