@import url("root.css");
html {
  box-sizing: border-box;
  font-size: 62.5%;
  font-size-adjust: 100%;
  margin-right: 0 !important;
  -ms-overflow-style: scrollbar;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
html,
body {
  height: 100%;
}
body {
  color: var(--textColor);
  font-family: var(--fontFam);
  font-optical-sizing: auto;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 450px) {
  body {
    font-size: 1.5rem;
  }
}
@media (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}
body::-webkit-scrollbar {
  width: 1rem;
}
body::-webkit-scrollbar-track {
  background-color: var(--clrOrange);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--clrRed);
}
::-moz-selection {
  background-color: var(--clrOrange);
  color: #fff;
}
::selection {
  background-color: var(--clrOrange);
  color: #fff;
}
.topbars {
  background-color: #fff;
  border-bottom: 0.1rem solid #f1f1f1;
}
.tobarscontent {
  height: var(--topbars);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.topbarcontentleft {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 2;
  height: 100%;
  column-gap: 1rem;
}
@media (min-width: 576px) {
  .topbarcontentleft {
    column-gap: 3rem;
  }
}
@media (min-width: 768px) {
  .topbarcontentleft {
    justify-content: flex-start;
    column-gap: 1rem;
  }
}
.topbarcontentleft a {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 500;
  transition: color 300ms ease;
}
.topbarcontentleft a i {
  margin-right: 0.5rem;
  font-weight: 300;
}
.topbarcontentleft a:hover {
  color: var(--clrRed);
}
.headerside {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex: 0.5;
}
.logo img {
  width: 10rem;
  margin-top: -1rem;
}
@media (min-width: 1200px) {
  .logo img {
    width: 12rem;
    margin-top: -0.5rem;
  }
}
.headerisdeend {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex: 0.5;
}
.menulinks {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 2;
  column-gap: 3rem;
}
@media (min-width: 1400px) {
  .menulinks {
    column-gap: 5rem;
  }
}
.dropdownitems {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.dropdownitems i {
  margin-left: 0.5rem;
  transition: transform 300ms ease;
  display: inline-block;
}
.menulinks a,
.menulinks .dropdownitems p {
  font-weight: 500;
  transition: all 300ms ease;
  text-transform: uppercase;
}
.menulinks a:hover,
.dropdownitems:hover {
  color: var(--clrRed);
}
.dropdownitems:hover i {
  transform: rotate(-45deg);
}
.dropdowncontent {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -5rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
}
.dropdownitems:hover .dropdowncontent {
  display: block;
  transform: perspective(600px) rotateX(0deg);
}
.dropdowncontent a {
  width: 100%;
  border-radius: 0.3rem;
  display: block;
  transition: all 300ms ease;
  font-size: 1.4rem;
  padding: 1rem;
}
.dropdowncontent a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.dropdowncontent a:hover {
  background-color: var(--clrRed);
  color: #fff;
}

#search {
  background-color: var(--clrRed);
  color: #fff;
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  transition: all 300ms ease;
}
#search:hover {
  background-color: var(--clrRedHover);
  color: #fff;
}
#search i {
  margin-right: 0.5rem;
}
.slide {
  height: var(--slide);
  overflow: hidden;
  position: relative;
}
.kur {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
}
.swiperslide {
  height: 100%;
}
.slideside {
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
}
.slideside::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5;
}
.slideside .container {
  height: 100%;
}
.slidetext {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  position: relative;
  z-index: 1;
  cursor: grab;
}
@media (min-width: 450px) {
  .slidetext {
    width: 40rem;
  }
}
@media (min-width: 768px) {
  .slidetext {
    width: 50rem;
  }
}
@media (min-width: 992px) {
  .slidetext {
    width: 60rem;
  }
}
@media (min-width: 1200px) {
  .slidetext {
    width: 80rem;
  }
}
.slidetext:active {
  cursor: grabbing;
}
.slidetext h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}
@media (min-width: 576px) {
  .slidetext h1 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .slidetext h1 {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .slidetext h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  .slidetext h1 {
    font-size: 6rem;
  }
}
@media (min-width: 1600px) {
  .slidetext h1 {
    font-size: 6.5rem;
  }
}
.slidetext p {
  margin-top: 1rem;
  color: #fff;
  opacity: 0.8;
}
.slidelink {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  color: #fff;
  background-color: var(--clrRed);
  margin-top: 2rem;
  transition: all 300ms ease;
}
.slidelink:hover {
  background-color: var(--clrRedHover);
  color: #fff;
}
.slidelink i {
  display: inline-block;
  transition: all ease-in-out 300ms;
}
.slidelink:hover i {
  transform: translateX(0.5rem);
}
.swiperslide .swiper-pagination-bullet {
  width: 4rem;
  border-radius: 0.2rem;
  background-color: #fff;
}
.swiperslide .swiper-pagination-bullet-active {
  background-color: var(--clrOrange);
}
.swiperslide .swiper-slide-active .slidetext h1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 0.6s;
}
.swiperslide .swiper-slide-active .slidetext p {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1.2s;
}
.swiperslide .swiper-slide-active .slidelink {
  -webkit-animation-duration: 1s;
  animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
  animation-delay: 1.8s;
}
.homeaboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.homeaboutcontenttitle {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.homeaboutcontenttitle h2 {
  font-size: 4.5rem;
  font-weight: 900;
}
.homeaboutgeneraltext {
  margin-bottom: 2rem;
}
.homeaboutgeneraltext p {
  margin-bottom: 1rem;
}
.homeaboutgeneraltext ul {
  padding-left: 2rem;
}
.homeaboutgeneraltext ul li {
  padding: 0.5rem;
  font-size: 1.6rem;
}
.homeaboutgeneraltext ul li i {
  color: var(--clrOrange);
}
.banner {
  padding: 2rem 0;
  background-color: var(--clrOrange);
}
.bannerTitle h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}
.tourBG {
  background-color: #f4f4f4;
}
.tourbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.tourbox:hover {
  transform: translateY(-1rem);
}
.tourboxshadow {
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
}
.tourbox figure {
  overflow: hidden;
  position: relative;
  height: 18rem;
}
.tourbox figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 900ms ease-in-out;
}
.tourbox:hover figure img {
  transform: scale(1.1) rotate(4deg);
}
.tourbox .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
}
.tourcontenttitle {
  margin-bottom: 1rem;
}
.tourcontenttitle h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.tourbox:hover .tourcontenttitle h3 a {
  color: var(--clrRed);
}
.tourcontentdetail {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tourcontentdetailitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tourcontentdetailitem:not(:last-child) {
  margin-bottom: 0.5rem;
}
.tourcontentdetailicon {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.tourcontentdetailicon i {
  font-weight: 400;
}
.absPrice {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 1rem;
  background-color: var(--clrOrange);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
}
.absPrice p {
  font-size: 1rem;
  font-weight: 500;
}
.absPrice span {
  font-weight: 700;
  font-size: 1.6rem;
}
/*-----*/
.tourinlinedetail {
  width: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: sticky;
  top: 1rem;
  margin-bottom: 2rem;
}
.tourinlinedetailitem {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.tourinlinedetailitem:not(:last-child) {
  margin-bottom: 2rem;
}
.tourinlinedetailitem h3 {
  font-weight: 800;
  margin-bottom: 1rem;
}
.tourinlinedetailitem p span {
  font-weight: 700;
  color: var(--clrRed);
}
.tourinlinedetailitemtitle {
  margin-bottom: 1rem;
}
.tourinlinedetailitemtitle h4 {
  font-weight: 700;
}
.tourinlinedetailitem ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.tourinlinedetailitem ul li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff0d0;
  border-radius: 0.3rem;
  padding: 1rem;
  font-size: 1.5rem;
}
.tourinlinedetailitem ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.tourinlinedetailitem ul li span {
  font-weight: 600;
  font-size: 1.4rem;
}
.tourinlinedetailitem ul li span i {
  font-weight: 300 !important;
}
.tourcontent {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .tourcontent {
    padding-right: 5rem;
  }
}
.tourcontenthead {
  margin-bottom: 2rem;
}
.tourcontenthead h2 {
  font-size: 3rem;
  font-weight: 800;
}
.tourdescriptions {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.toursimages {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #eaeaea;
  height: 100%;
}
.toursimages img {
  transition: all 900ms ease-in-out;
  object-fit: cover;
  height: 100%;
}
.toursimages:hover img {
  transform: scale(1.1) rotate(4deg);
  filter: brightness(50%);
}
.imagesrow {
  height: 100%;
  row-gap: 2rem;
}
.breadCrumbs {
  padding: 2rem 0 0 0;
}
.breadCrumbs ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
@media (min-width: 768px) {
  .breadCrumbs ul {
    row-gap: 0;
    flex-wrap: nowrap;
  }
}
.breadCrumbs ul li {
  position: relative;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
.breadCrumbs ul li i {
  display: inline-block;
  transform: translateY(-0.12rem);
  line-height: 1;
}
.breadCrumbs ul li.active {
  font-weight: 800;
  color: var(--clrRed);
}
.breadCrumbs ul li:not(:last-child)::after {
  content: "\F3C1";
  font-family: "remixicon";
  position: absolute;
  top: 0.8rem;
  font-size: 0.5rem;
  right: -1.25rem;
}
@media (min-width: 768px) {
  .breadCrumbs ul li:not(:last-child)::after {
    top: 1rem;
  }
}
.breadCrumbs ul li a {
  transition: all 300ms ease;
}
.breadCrumbs ul li:hover a {
  color: var(--clrOrange);
}
.tourinlinebuttonside {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  margin-top: 1rem;
}
.tourinlinebuttonside button,
.tourinlinebuttonside a {
  width: 100%;
  flex: 1;
  display: inline-block;
  text-align: center;
  border-radius: 0.3rem;
  padding: 1rem 0;
  font-size: 1.5rem;
  color: #fff;
  transition: all 300ms ease;
}
.tourinlinebuttonside button {
  background-color: var(--clrRed);
}
.tourinlinebuttonside button:hover {
  background-color: var(--clrRedHover);
  color: #fff;
}
.tourinlinebuttonside a {
  background-color: green;
}
.tourinlinebuttonside a:hover {
  background-color: rgb(0, 87, 0);
}
.homegeneraltitle {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .homegeneraltitle {
    margin-bottom: 4rem;
  }
}
.homegeneraltitle h2 {
  font-size: 2.5rem;
  font-weight: 900;
}
@media (min-width: 576px) {
  .homegeneraltitle h2 {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .homegeneraltitle h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .homegeneraltitle h2 {
    font-size: 4rem;
  }
}
.footer {
  background-color: #f5f7fc;
  padding: 5rem 0 1rem 0;
}
.footerbox {
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .footerbox {
    margin-bottom: 0;
  }
}
.footerbox h4 {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 3rem;
}
@media (min-width: 1200px) {
  .footerbox h4 {
    font-size: 1.8rem;
  }
}
.footerbox h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 3rem;
  height: 0.2rem;
  border-radius: 5rem;
  background-color: var(--clrOrange);
}
.footerbox h4::after {
  content: "";
  position: absolute;
  left: 3.5rem;
  bottom: -1rem;
  width: 1.5rem;
  height: 0.2rem;
  border-radius: 5rem;
  background-color: var(--clrRed);
}
.footercontentbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footercontentboxitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 1200px) {
  .footercontentboxitem {
    width: 80%;
  }
}
.footercontentboxitem:not(:last-child) {
  margin-bottom: 2rem;
}
.footercontentboxicon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  transition: all 300ms ease;
}
.footercontentboxitem .content {
  width: calc(100% - 3.5rem);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footercontentboxitem .content span {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.footercontentboxitem .content a {
  font-size: 1.5rem;
  transition: color 300ms ease;
}
.footercontentboxitem .content a:not(:last-child) {
  margin-bottom: 0.3rem;
}
.footercontentboxitem:hover .footercontentboxicon {
  background-color: var(--clrRed);
  color: #fff;
}
.footerbox figure {
  width: 12rem;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .footerbox figure {
    width: 15rem;
  }
}
.footersocial {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.3rem;
}
.footersocial a {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
  color: #fff;
  background-color: var(--clrRed);
  transition: all 300ms ease;
}
@media (min-width: 1200px) {
  .footersocial a {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.footersocial a:hover {
  background-color: var(--clrOrange);
  color: var(--textColor);
}
.footerbox ul li {
  padding: 0.5rem 0;
  transition: all 300ms ease;
}
.footerbox ul li a {
  transition: color 300ms ease;
}
.footerbox ul li:hover {
  padding-left: 0.5rem;
}
.footerbox ul li:hover a {
  color: var(--clrRed);
}
.reflogo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.reflogo img {
  aspect-ratio: 2.5;
  object-fit: contain;
}
.homesearchbars {
  background-color: #f8f8f8;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .homesearchbars {
    width: 100rem;
    padding: 5rem;
    margin: 5rem auto 0 auto;
  }
}
.homesearchbarstitle {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .homesearchbarstitle {
    margin-bottom: 2rem;
  }
}
.homesearchbarstitle h2 {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .homesearchbarstitle h2 {
    font-size: 1.8rem;
  }
}
.homesearchbars .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  width: 100%;
}
.homesearchbars button[type="submit"] {
  background-color: var(--clrRed);
  color: #fff;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  height: 4.6rem;
}
.homesearchbars button[type="submit"]:hover {
  background-color: var(--clrRedHover);
  color: #fff;
}
.searchinlinebox {
  width: 100%;
  padding: 2rem;
  background-color: #f5f7fc;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 0.3rem;
}
.searchinlinebox h3 {
  font-size: 1.8rem;
  font-weight: 700;
}
.searchinlinebox ul {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 1rem;
}
@media (min-width: 768px) {
  .searchinlinebox ul {
    flex-wrap: nowrap;
    row-gap: 0;
  }
}
.searchinlinebox ul li {
  font-size: 1.6rem;
}
.searchinlinebox ul li span {
  font-weight: 600;
}
.contactbox {
  margin-bottom: 2rem;
}
.contactbox button[type="submit"] {
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  color: #fff;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  background-color: var(--clrRed);
}
.contactbox button[type="submit"]:hover {
  background-color: var(--clrRedHover);
  color: #fff;
}
.contactboxhead {
  margin-bottom: 2rem;
}
.contactboxhead h2 {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .contactboxhead h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .contactboxhead h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  .contactboxhead h2 {
    font-size: 2.5rem;
  }
}
.contactboxhead h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.contactbox label span {
  color: var(--clrRed);
  font-size: 1.2rem;
}
.contactboxitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.contactboxitem:not(:last-child) {
  margin-bottom: 1rem;
}
.contactboxitemicon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.3rem;
  color: #fff;
  background-color: var(--clrRed);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.contactboxcontent {
  width: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2rem;
  padding-right: 1rem;
}
.contactboxcontent a:not(:last-child) {
  margin-bottom: 1rem;
}
.contactboxcontent a {
  font-size: 1.6rem;
  transition: color 300ms ease;
}
.contactboxcontent a:hover {
  color: var(--clrRed);
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogboximage {
  background-color: #f1f1f1;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1.5;
  position: relative;
}
.blogboximage img {
  transition: all 2s ease-in-out;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.1) rotate(2deg);
  filter: brightness(50%);
}
.blogbox .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blogbox .content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.blogbox .content h3 a {
  transition: color 300ms ease;
}
.blogbox:hover .content h3 a {
  color: var(--clrRed);
}
.blogbox .content p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex: 1;
}
.bloglink {
  font-weight: 500;
  transition: all 300ms ease;
}
.bloglink:hover {
  color: var(--clrRed);
}
.blogDate {
  position: absolute;
  bottom: 0;
  right: 1rem;
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  background-color: #fafafa;
  border-radius: 5rem 5rem 0 0;
  padding: 2rem 0.8rem;
  font-weight: 500;
}
.blogaffix figure {
  border-radius: 1rem;
  overflow: hidden;
}
.blogaffix {
  position: sticky;
  top: 1rem;
}
.others {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  row-gap: 0.5rem;
  background-color: #f5f7fc;
  border-radius: 0.5rem;
}
.others a {
  padding: 0.5rem;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.others a:hover {
  background-color: var(--clrOrange);
}
.blogContents {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .blogContents {
    padding-left: 5rem;
  }
}
.blogContentsHead {
  margin-bottom: 1rem;
}
.blogContentsHead h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
.keywords {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.keyspan {
  border: 0.1rem solid #eaeaea;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
}
.socialmediaside {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.2rem;
}
.socialmediaside a {
  width: 4rem;
  height: 4rem;
  border-radius: 0.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: var(--textColor);
  font-size: 1.6rem;
  background-color: #eaeaea;
  transition: all 300ms ease;
}
.socialmediaside a:hover {
  background-color: var(--clrOrange);
  color: var(--textColor);
}
@media (min-width: 1200px) {
  .footerPL5 {
    padding-left: 5rem;
  }
}
.footerboxfirst {
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .footerboxfirst {
    align-items: flex-start;
  }
}
.footerend {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem solid #eaeaea;
  text-align: center;
}
@font-face {
  font-family: pill;
  src: url(../fonts/magnolia_sky.ttf);
}
.footerend a {
  font-family: pill;
  font-size: 2.5rem;
  transition: color 300ms ease;
}
.footerend a:hover {
  color: var(--clrRed);
}
.spinners {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
.spinners::before,
.spinners::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 0.5rem solid var(--clrOrange);
  animation: prixClipFix 2s linear infinite;
}
.spinners::after {
  border-color: var(--clrRed);
  animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
  inset: 6px;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 500;
}
.tourCalendar {
  transition: color 300ms ease;
}
.tourCalendar:hover {
  color: var(--clrRed);
}
.calendarTitle {
  margin-bottom: 2rem;
}
.calendarTitle h2 {
  font-size: 2.5rem;
  font-weight: 700;
}
#table {
  border-collapse: collapse;
  width: 100%;
}
#table th,
#table td {
  padding: 1rem;
  border: 0.1rem solid #eaeaea;
  font-size: 1.5rem;
}
.centered {
  text-align: center;
}
#table tr:nth-child(2n) {
  background-color: #f5f7fc;
}
#table a {
  background-color: var(--clrRed);
  color: #fff;
  border-radius: 0.3rem;
  padding: 0.5rem 1rem;
  transition: all 300ms ease;
}
#table a:hover {
  background-color: var(--clrRedHover);
  color: #fff;
}
#table a i {
  margin-right: 0.3rem;
}
@media (max-width: 992px) {
  #table th {
    display: none;
  }
  #table td {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #table td::before {
    content: attr(data-cell) ": ";
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 0.3rem;
  }
}
.fixedwp {
  position: fixed;
  z-index: 300;
  bottom: 2rem;
  right: 2rem;
}
.fixedwp a {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all 300ms ease;
  background-color: #25d366;
  font-size: 2.5rem;
  animation: bounce 1.5s infinite ease-in-out;
}
.fixedwp a:hover {
  color: #fff;
  background-color: #075e54;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    /* Butonun zÄ±plama yÃ¼ksekliÄŸi */
  }
}
.mobilemenu {
  background-color: #fbfbfb;
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  padding: 1rem 0;
}
.mobilemenucontent a,
.mobileitem {
  color: var(--textColor);
  transition: all 300ms ease;
  width: 100%;
  display: block;
  padding: 0.8rem 1rem;
  font-size: 1.5rem;
  border-radius: 0.3rem;
}
.mobilemenucontent a:hover,
.mobileitem:hover {
  background-color: var(--clrOrange);
  color: var(--textColor);
}
.mobileitem {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobiledropdowncontent {
  display: none;
}
.mobiledropdowncontent a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.mobilemenu {
  display: none;
}
.rezervastionForms {
  padding-left: 5rem;
}
.rezervastionForms button[type="submit"] {
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  color: #fff;
  padding: 1rem 2rem;
  transition: all 300ms ease;
  background-color: var(--clrRed);
  margin-top: 1rem;
}
.rezervastionForms button[type="submit"]:hover {
  color: #fff;
  background-color: var(--clrRedHover);
}
.mainCategoryImages {
  position: relative;
  border-radius: 1rem;
  margin-bottom: 2rem;
  height: 30rem;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 768px) {
  .mainCategoryImages {
    height: 20rem;
  }
}
@media (min-width: 992px) {
  .mainCategoryImages {
    height: 30rem;
  }
}
.mainCategoryImages img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease-in-out;
}
.mainCategoryImages:hover img {
  transform: scale(1.2) rotate(4deg);
  filter: brightness(50%);
}
.mainCategoryImages .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.mainCategoryImages .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.mainCategoryImages .content h3 a {
  color: #fff;
  transition: color 300ms ease;
}
.mainCategoryImages:hover .content h3 a {
  color: var(--clrOrange);
}
.otelboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.otelboxesimage {
  border-radius: 1rem;
  overflow: hidden;
  height: 18rem;
}
.otelboxesimage img {
  height: 100%;
  transition: all 2s ease-in-out;
}
.otelboxes:hover .otelboxesimage img {
  transform: scale(1.1) rotate(4deg);
  filter: brightness(50%);
}
.otelboxes .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.otelboxes .content h3 {
  font-size: 1.6rem;
  font-weight: 600;
}
.otelboxes .content h3 a {
  color: var(--textColor);
  transition: color 300ms ease;
}
.otelboxes .content h3:hover a {
  color: var(--clrRed);
}
.otelboxes .content p {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}
.otellink {
  color: var(--clrRed);
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 300ms ease;
}
.otellink:hover {
  color: var(--clrRedHover);
}
.otelext {
  margin-bottom: 2rem;
  height: 8rem;
}
.otelext img {
  height: 100%;
  object-fit: cover;
}
.tourlistside {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .tourlistside {
    width: 100rem;
  }
}
.tourlistitems {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  padding: 2rem;
}
.tourlistitemstitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--clrOrange);
  padding: 1rem;
  border-radius: 0.3rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .tourlistitemstitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.tourlistitemstitle h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .tourlistitemstitle h2 {
    margin-bottom: 0;
    font-size: 2rem;
  }
}
.tourlistitemstitle p {
  color: #fff;
  font-weight: 700;
}
.tourTransport {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.tourTransportitem {
  padding: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f5f7fc;
  margin-bottom: 1rem;
  border-radius: 0.3rem;
}
.tourTransportitem:first-child {
  width: 100%;
}
.tourTransportitem:not(:first-child) {
  width: 50%;
}
@media (min-width: 768px) {
  .tourTransportitem {
    width: calc(100% / 3);
    flex: 1;
  }
}
.tourTransportitem i {
  margin-right: 0.5rem;
  color: var(--clrRed);
}
.tourPricess {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .tourPricess {
    margin-top: 0;
  }
}
.tourPricess h3 {
  padding: 1rem;
  width: 100%;
  border-radius: 0.3rem;
  background-color: var(--clrOrange);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.tourPricess ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 1rem;
}
.tourPricess ul li {
  padding: 0.5rem 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
}
.tourPricess ul li span {
  font-weight: 900;
  color: var(--textColor);
  text-align: right;
}
.otelBox {
  margin-bottom: 2rem;
}
.otelBoximages {
  position: relative;
  width: 100%;
  height: 15rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.otelBoximages img {
  height: 100%;
  object-fit: cover;
  transition: all 2s ease-in-out;
}
.otelname {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  border-radius: 0.3rem;
  background-color: var(--clrRed);
  z-index: 1;
  padding: 0.5rem 1rem;
  transition: all 300ms ease;
}
.otelname p {
  font-size: 1.2rem;
  color: #fff;
}
.otelBox:hover .otelBoximages img {
  transform: scale(1.1) rotate(4deg);
  filter: brightness(50%);
}
.otelBox:hover .otelname {
  background-color: var(--clrOrange);
}
.viwes {
  width: 100%;
  padding: 1rem;
  font-size: 1.5rem;
  background-color: var(--clrRed);
  color: #fff;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  display: block;
  text-align: center;
  margin-top: 1rem;
}
.viwes:hover {
  background-color: var(--clrOrange);
  color: var(--textColor);
}
.tourPageGeneralTitle h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.tourPageTabs {
  padding: 2rem;
  border-radius: 0.3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  background-color: #f5f7fc;
}
@media (min-width: 992px) {
  .tourPageTabs {
    position: sticky;
    top: 1rem;
  }
}
.tourPageTabsitem {
  border-radius: 0.5rem;
  padding: 1rem;
  width: 100%;
  background-color: #fff;
  color: var(--textColor);
  transition: all 300ms ease;
  cursor: pointer;
}
.tourPageTabsitem p {
  font-size: 1.4rem;
}
.tourPageTabsitem.active,
.tourPageTabsitem.active:hover,
.tourPageTabsitem.active:focus {
  background-color: var(--clrRed);
  color: #fff;
}
.tourPageTabsitem:hover {
  background-color: var(--clrOrange);
}
.tabGeneral {
  box-shadow: none !important;
  padding: 2rem 0;
}
@media (min-width: 1200px) {
  .tabGeneral {
    padding: 0 2rem;
  }
}
.showtabs {
  display: none;
}
.showtabs.active {
  display: flex !important;
}
.tabGeneralTitle {
  margin-bottom: 1rem;
}
.tabGeneralTitle h2 {
  font-weight: 700;
  font-size: 2rem;
}
