.section-header {
  background-color: #f6f4f4;
}

.section-header a {
  color: #000;
}

.section-header .section-header-links {
  display: flex;
  padding-top: 20px;
  padding-bottom: 10px;
  gap: 5px;
  font-size: 16px;
  color: var(--color-2);
}

.section-header .section-header-links p,
.section-header .section-header-links a {
  font-size: 16px;
  color: var(--color-2);
}

.study-interface {
  margin: 100px 0;
}

.study-interface .study-interface-content {
  display: flex;
  gap: 10px;
}

.study-interface .study-interface-content p {
  width: 800px;
  font-size: 22px;
  line-height: 2;
  margin-top: 20px;
  color: var(--color-2);
  margin-bottom: 50px;
  padding-right: 1rem;
}

.study-interface .study-interface-content ul {
  margin-top: 20px;
  flex-direction: column;
  padding-left: 0;
  padding-right: 1rem;
}

.study-interface .study-interface-content ul li {
  margin-right: 0;
  list-style-type: disc;
  font-size: 22px;
  color: var(--text-color);
  margin-top: 10px;
  margin-bottom: 10px;
  width: 800px;
  display: block;
}

.study-interface .study-interface-content ul li span {
  color: var(--color-2);
  font-weight: 500;
  line-height: 2;
}

.study-interface .study-interface-content .section-images {
  position: relative;
}

.study-interface .study-interface-content .section-images .img:nth-child(1) {
  background-color: #e9e9e991;
  padding: 30px;
  width: 400px;
  height: 540px;
  padding-bottom: 50px;
}

.study-interface .study-interface-content .section-images .img img {
  width: 100%;
  height: 100%;
}

.study-interface .study-interface-content .section-images .img:nth-child(2) {
  width: 180px;
  height: 220px;
  background-color: #e9e9e982;
  position: absolute;
  right: -10px;
  bottom: -100;
  transform: rotate(10deg);
}

.study-interface .study-interface-content .section-images .img:nth-child(3) {
  width: 180px;
  height: 220px;
  background-color: #e9e9e982;
  position: absolute;
  left: -10px;
  right: unset;
  bottom: -100px;
  transform: rotate(-10deg);
}



/* TOURISM INTERFACE PAGE */

.tourism-interface-content {
  margin: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tourism-interface-content .tourism-card {
  position: relative;
  width: calc(100% / 3 - 20px);
  height: 400px;
}

.tourism-interface-content .tourism-card .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.tourism-interface-content .tourism-card .img img {
  width: 100%;
  height: 100%;
  filter: brightness(0.5);
  border-radius: 5px;
  transition: 0.4s;
}

.tourism-interface-content .tourism-card:hover .img img {
  transform: scale(1.2) rotate(4deg);
  filter: brightness(1);
}

.tourism-interface-content .tourism-card .text {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: #fff;
}

.tourism-interface-content .tourism-card .text .text-head {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

.tourism-interface-content .tourism-card .text .tourism-stars i {
  font-size: 13px;
  color: #ffcc47;
  margin-bottom: 10px;
}

.tourism-interface-content .tourism-card .text .tourism-price p {
  font-size: 18px;
}

.tourism-interface-content .tourism-card .text .tourism-price span {
  font-size: 20px;
  color: #ffcc47;
  font-weight: 500;
}

.tourism-offer-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 100px;
}

.tourism-offer-images .img-container {
  width: calc(100% / 3 - 20px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tourism-offer-images .img-container .img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.tourism-offer-images .img-container:nth-child(1) .img {
  height: 520px;
}

.tourism-offer-images .img-container .img img {
  width: 100%;
  height: 100%;
}

.tourism__offer__text {
  margin-top: 50px;
}

.tourism__offer__text h2 {
  font-size: 20px;
  color: var(--color-2);
}

.tourism__offer__text .stars {
  font-size: 13px;
  color: #ffcc47;
  margin: 20px 0;
}

.tourism__offer__text .price {
  font-size: 18px;
}

.tourism__offer__text .price span {
  color: #ffcc47;
  font-weight: 600;
}

.tourism__offer__text p {
  font-size: 24px;
  margin-top: 20px;
  font-weight: 600;
}

.tourism__offer__card__container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
  margin-bottom: 100px;
}

.tourism__offer__card__container .tourism__offer__card {
  flex: 1;
  height: 300px;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 10px #bbbbbb;
}

.tourism__offer__card__container .tourism__offer__card h3 {
  font-size: 24px;
  font-weight: 500;
}

.tourism__offer__card__container .tourism__offer__card ul {
  margin-right: 30px;
  flex-direction: column;
}

.tourism__offer__card__container .tourism__offer__card ul li {
  color: var(--text-color);
  font-size: 18px;
  margin-top: 15px;
  display: list-item;
  list-style: disc;
}

.service__order {
  position: relative;
}

.service__order .white__space {
  height: 250px;
}

.service__order .service__order_img {
  width: 100%;
  height: 450px;
}

.service__order .service__order_img img {
  width: 100%;
  height: 100%;
}

.service__order__form {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px #bbbbbb;
  text-align: center;
  padding: 20px;
  width: 700px;
}

.service__order__form.form__absolute {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.service__order__form .input {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
}

.service__order__form h3 {
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.service__order__form input {
  border: 1px solid #cfcfcf;
  outline: none;
  padding: 10px;
  color: var(--text-color);
  font-size: 16px;
  border-radius: 5px;
  flex: 1;
  width: 100%;
}

.service__order__form textarea {
  border: 1px solid #cfcfcf;
  outline: none;
  padding: 10px;
  color: var(--text-color);
  font-size: 16px;
  border-radius: 5px;
  width: 100%;
  height: 150px;
  resize: none;
  margin-top: 10px;
}

.service__order__form select {
  border: 1px solid #cfcfcf;
  outline: none;
  padding: 10px;
  color: var(--text-color);
  font-size: 16px;
  border-radius: 5px;
  width: 100%;
  appearance: none;
}
.service__order__form select i {
  position: absolute;
}

.service__order__form .select__form {
  flex: 1;
  position: relative;
}

.select__form .icon__arrow{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%)
}

.service__order__form__btn {
  width: 180px;
  height: 60px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  margin: 50px auto;
  transition: 0.3s;
  margin-bottom: 20px;
}

.service__order__form__btn:hover {
  transform: scale(0.9);
}

.tourism__offer_carousel {
  direction: ltr;
  margin-top: 50px;
  display: none;
}

.tourism__offer_carousel img {
  height: 200px;
  width: 100%;
}

.tourism__offer_carousel .owl-dots {
  display: none;
}

.hotel__reservation {
  margin-top: 100px;
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 100px;
}

.hotel__reservation .hotel__reservation__text {
  width: 700px;
}

.hotel__reservation__text h2 {
  font-size: 28px;
  color: var(--color-2);
  margin-bottom: 20px;
  line-height: 1.8;
}

.hotel__reservation__text p {
  font-size: 20px;
  width: 100%;
  line-height: 2;
  color: var(--text-color);
  margin-bottom: 30px;
}

.hotel__reservation__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.hotel-gallary{
    position: relative;
}

.hotel__reservation__img .img:nth-child(1) {
  width: 400px;
  height: 500px;
  background-color: #e9e9e991;
  padding: 30px;
  padding-bottom: 50px;
}
.hotel__reservation__img .img:nth-child(2),
.hotel__reservation__img .img:nth-child(3) {
  width: 200px;
  height: 280px;
  position: absolute;
  background-color: #e9e9e991;
  padding: 15px;
  padding-bottom: 30px;
}

.hotel__reservation__img .img:nth-child(2) {
left: -10px;
  bottom: -100px;
  transform: rotate(-10deg);

}

.hotel__reservation__img .img:nth-child(3) {

right: -10px;
  bottom: -100px;
  transform: rotate(10deg);
}





    /* .hotel__reservation__img .study-changes:nth-child(3) {

    right: -10px;

    } */

.hotel__reservation__img .img img {
  width: 100%;
  height: 100%;
}

.visa__carousel{
  direction: ltr;
}

.visa__carousel .owl-dots{
  display: none;
}

.visa__carousel  h3{
  font-size: 35px;
  margin-bottom: 30px;
  text-align: right;
  color: var(--color-2);
}

.visa__carousel .img__container{
  position: relative;
  width: 100%;
  height: 350px;
  margin-bottom: 100px;
}

.visa__carousel .img__container p{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  font-size: 24px;
  color: #fff;
}


.visa__carousel .img__container img{
  width: 100%;
  height: 100%;
  filter: brightness(0.6);
}
