:root {
  --sColor: red;
  --colorBlue: #0072b7;
  --colorPink: #e94d65;
  --colorGrey: #5e5e5e;
  --colorRed: red;
  --colorOrange: #ff7f47;
  --button-back-color: var(--sColor);
  --button-fore-color: #fff;
  --universal-padding: 10px;
  --sWidth: 1366px;
  --fontS: 'Helvetica, Arial, FreeSans, sans-serif';
}
html {
  font-size: 15px;
}
html,
* {
  font-family: var(--fontS), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
}   
html,
body,
form {
  margin: 0;
  padding: 0;
}
* {
  box-sizing: border-box;
}
body {
  padding: 0;
  color: #000;
  background: #fff;
  margin: 0;
  font-family: var(--fontS), sans-serif !important;
  font-weight: 400;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: unset;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
}
.btn,
input,
.btnS {
  font-family: inherit;
}
.hide {
  display: none;
}
.mobil {
  display: none !important;
}
img {
  border: 0;
}
a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
}
.anim {
  transition: all 0.5s ease 0s;
}
.clr:after {
  content: "";
  clear: both;
  display: block;
  height: 0;
  font-size: 0px;
}
.imgFit {
  width: 100%;
}
.cursorP {
  cursor: pointer;
}
.borderRadius5 {
  border-radius: 5px;
}
.imgFitH {
  height: 100%;
  display: block;
}
.floatLeft,
.alignleft {
  float: left;
  margin-right: 20px;
}
.floatRight,
.alignright {
  float: right;
  margin: 0 0 0 20px;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.masterTooltipSCL {
  display: none;
  position: absolute;
  background-color: #000;
  padding: 5px 15px;
  color: #fff;
  font-family: var(--fontS), Tahoma, Geneva, sans-serif;
  font-size: 12px;
  -webkit-box-shadow: 4px 3px 5px 0px rgba(50, 50, 50, 0.36);
  -moz-box-shadow: 4px 3px 5px 0px rgba(50, 50, 50, 0.36);
  box-shadow: 4px 3px 5px 0px rgba(50, 50, 50, 0.36);
}
.masterTooltipSCL span {
  background: url(../images/sol_arrow.png) no-repeat left;
  position: absolute;
  margin: -3px 0 0 -25px;
  display: inline-block;
  width: 16px;
  height: 17px;
}
#quickForm {
  position: fixed;
  top: 150px;
  right: 0;
  background: red;
  border-radius: 4px 0 0 4px;
  color: #fff;
  text-align: center;
  z-index: 9999;
  padding: 10px 15px;
  cursor: pointer;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease 0s;
  -webkit-box-shadow: -17px 0px 40px 0px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: -17px 0px 40px 0px rgba(0, 0, 0, 0.24);
  box-shadow: -17px 0px 40px 0px rgba(0, 0, 0, 0.24);
}
#quickForm:hover {
  background: #000;
  color: #fff;
  transition: all 0.5s ease 0s;
}
.fancybox-bg {
  background-color: rgba(64, 22, 22, 0.95) !important;
}
.contentC {
  width: var(--sWidth);
  margin: 0 auto;
}
#contentMain {
  padding: 10px 0;
  width: var(--sWidth);
  margin: 0 auto;
}
.linkA a {
  color: #ff0000;
  text-decoration: underline;
}
#logo {
  font-size: 35px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #222;
  line-height: 35px;
}
#logo strong {
  color: #fff;
  font-weight: 300;
  display: inline-block;
  padding: 5px 10px;
  margin-left: 7px;
  background: #222;
  border-radius: 5px;
}
#header {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header #topMenu {
  display: inline-flex;
  align-items: center;
}
#header #topMenu ul {
  margin: 0;
  padding: 0;
  display: flex;
}
#header #topMenu ul li {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  transition: all 0.5s ease 0s;
  position: relative;
}
#header #topMenu ul li i {
  font-style: normal;
  margin-right: 10px;
}
#header #topMenu ul li a {
  display: block;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 400;
  color: #2e2e2e;
  transition: all 0.5s ease 0s;
}
#header #topMenu ul li:hover a {
  color: #fff;
  transition: all 0.5s ease 0s;
}
#header #topMenu ul li:hover:after {
  height: 100%;
}
#header #topMenu ul li:after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 4px 4px 0 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: #222;
}
#header #topMenu ul li ul {
  display: none;
  position: absolute;
  width: 250px;
  background: #222;
  -webkit-box-shadow: 9px 14px 24px 0px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 9px 14px 24px 0px rgba(0, 0, 0, 0.41);
  box-shadow: 9px 14px 24px 0px rgba(0, 0, 0, 0.41);
  z-index: 99999;
  border-radius: 0 4px 4px 4px;
}
#header #topMenu ul li:hover ul {
  display: block;
}
#header #topMenu ul li:hover ul li {
  width: 100%;
  display: block;
}
#header #topMenu ul li:hover ul li a {
  font-size: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  padding-top: 11px;
  padding-bottom: 11px;
  display: block;
  transition: all 0.5s ease 0s;
}
#header #topMenu ul li:hover ul li a:hover {
  background: #fff;
  color: #222;
}
#header #topMenu ul li:hover ul li ul {
  left: 220px;
  top: 0;
}
#header #topMenu .dilAc {
  margin-left: 10px;
  display: inline-block;
  font-size: 13px;
  padding: 4px 4px 4px 8px;
  border: 1px solid #eaeaea;
  border-radius: 3px;
}
.basicSlide {
  position: relative;
}
.basicSlide .slick-arrow {
  color: white;
  top: calc(50% - 40px);
}
.homeBanner {
  position: relative;
}
.homeBanner:before {
  content: "";
  position: absolute;
  height: 150px;
  width: 100%;
  border-radius: 15px;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
  /* IE6-9 */
}
.homeBanner .a1 {
  width: 100%;
  border-radius: 15px;
}
.homeBanner .caption {
  position: absolute;
  top: 80px;
  color: #fff;
  padding-left: 40px;
}
.homeBanner .caption h3 {
  font-size: 50px;
  font-weight: 700;
}
.homeBanner .caption p {
  max-width: 50%;
}
.homeBanner .caption .n2 {
  text-align: left;
}
.homeBanner2 {
  background: #f1f1f1;
  border-radius: 15px;
  display: flex;
  margin-top: 100px;
  position: relative;
}
.homeBanner2 .a1 {
  padding: 30px  40px;
  width: 40%;
}
.homeBanner2 .b2 {
  padding: 25px 25px 25px 0;
  width: 60%;
}
.homeBanner2 .b2 .slick-list {
  padding: 10px 0;
}
.homeBanner2 .b2 .b3 div {
  margin: 0 7px;
  background: #fff;
  padding: 10px 10px 20px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(3, 54, 63, 0.16), 0 2px 4px rgba(3, 54, 63, 0.08), 0 1px 2px rgba(3, 54, 63, 0.16), 0 -1px 2px rgba(3, 54, 63, 0.04);
  height: 100%;
}
.homeBanner2 .b2 .b3 div img {
  width: 100%;
  border-radius: 7px;
}
.homeBanner2 .b2 .b3 div h3 {
  padding: 10px 0;
  font-size: 17px;
  margin: 0;
}
.homeBanner2 .b2 .b3 div p {
  margin: 0;
  padding: 0 0 10px 0;
  font-size: 13px;
  color: #666;
}
.homeBanner2 .b2 .b3 div span {
  font-size: 14px;
}
.homeBanner2 .b2 .geri {
  left: -50px;
  top: 90px;
}
.homeBanner2 .b2 .ileri {
  right: -20px;
  top: 90px;
}
.ileri {
  position: absolute;
  right: -10px;
  z-index: 9999;
  top: 75px;
  font-size: 50px;
  color: #666;
}
.geri {
  position: absolute;
  left: -10px;
  z-index: 9999;
  top: 75px;
  font-size: 50px;
  color: #666;
}
.b1 {
  position: relative;
  margin-top: -70px;
  padding: 0 25px;
}
.b1 .d1 {
  padding: 8px;
  margin: 0 10px;
  background: #fff;
  border-radius: 15px;
}
.b1 .d1 img {
  width: 100%;
  border-radius: 8px;
}
.b1 .d1 .m1 {
  display: flex;
  justify-content: space-between;
}
.b1 .d1 .destianation {
  font-size: 11px;
  padding: 5px 0;
  color: #666;
}
.b1 .d1 h2 {
  padding: 0 0 0;
  margin: 0;
  font-size: 17px;
}
.b1 .d1 h2 a {
  font-size: 17px;
  font-weight: 600;
  color: black;
}
.b1 .d1 .f1 {
  font-size: 20px;
  font-weight: 600;
  color: #ff7f47;
  background: #fff;
  margin-top: -20px;
  border-radius: 6px;
  margin-right: 3px;
  padding: 4px 10px;
}
.pageDetailTitle {
  text-align: center;
  border-bottom: 1px dashed #eaeaea;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.productList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px;
}
.productList .product {
  width: 30%;
  padding-bottom: 30px;
  box-shadow: 0 1px 2px rgba(3, 54, 63, 0.4), 0 -1px 2px rgba(3, 54, 63, 0.04);
  border-radius: 10px;
  margin-bottom: 60px;
  transition: all 0.5s ease 0s;
}
.productList .product .img {
  display: block;
}
.productList .product .img img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.productList .product .ic {
  padding: 0 20px;
}
.productList .product h2 {
  margin: 0;
  padding: 0;
}
.productList .product h2 a {
  font-size: 20px;
  padding: 10px 0;
  font-weight: 600;
  color: black;
}
.productList .product .days {
  color: #7B7B7B;
}
.productList .product .price {
  font-weight: 300;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding-top: 15px;
}
.productList .product .price span {
  font-weight: 700;
  color: #ff7f47;
  font-size: 20px;
  margin-left: 10px;
  line-height: 20px;
}
.productList .product .destination {
  font-size: 14px;
  color: #a75300;
  padding: 10px 30px 0 0;
}
.productList .product:hover {
  background: #f9f9f9;
  transition: all 0.5s ease 0s;
}
.productList .a1 {
  width: 49%;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 10px;
}
.productList .a1 .img {
  display: block;
}
.productList .a1 .img img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}
.productList .a1 .ic {
  padding: 20px;
}
.productList .a1:hover {
  background: #f9f9f9;
  transition: all 0.5s ease 0s;
}
.detail {
  display: flex;
  justify-content: space-between;
}
.detail .a {
  width: calc(100% - 400px);
  padding-right: 30px;
  position: relative;
}
.detail .a .img img {
  width: 100%;
  border-radius: 10px;
}
.detail .a .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail .a .title h1 {
  font-size: 30px;
  line-height: 36px;
  padding: 20px 0;
}
.detail .a .title .price {
  margin-left: 30px;
  font-weight: bold;
  font-size: 21px;
  text-align: center;
  background: #eaeaea;
  padding: 10px 20px;
  border-radius: 10px;
  line-height: 20px;
}
.detail .a .title .price dt {
  font-size: 16px;
  font-weight: 300;
}
.detail .a .destianation {
  font-size: 14px;
}
.detail .a .bar {
  padding: 20px 40px;
  margin: 20px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail .a .bar .c {
  display: flex;
  align-items: center;
  font-weight: bold;
}
.detail .a .bar .c dt {
  font-weight: 300;
}
.detail .a .bar .c i {
  font-size: 35px;
  color: #d95e00;
  margin-right: 20px;
}
.detail .a .a1 {
  position: relative;
}
.detail .a .a1 a {
  font-size: 17px;
  border: 2px solid #ff7f47;
  background: #fff;
  padding: 7px 29px;
  margin-right: 20px;
  color: #262339;
  border-radius: 5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: all 0.5s ease 0s;
}
.detail .a .a1 a i {
  font-size: 27px;
  margin-right: 10px;
}
.detail .a .a1 a.active,
.detail .a .a1 a:hover {
  background: #ff7f47;
  color: white;
  transition: all 0.5s ease 0s;
}
.detail .a .a1.stick {
  position: fixed;
  top: 0;
  height: 80px;
  z-index: 99;
}
.detail .a .a1StickHeight.active {
  height: 60px;
}
.detail .a .tour_program {
  padding: 40px 0 0 0;
}
.detail .a .tour_program .a3 {
  display: flex;
}
.detail .a .tour_program .a3 .a4 {
  padding-right: 20px;
  position: relative;
  padding-top: 23px;
}
.detail .a .tour_program .a3 .a4 span {
  display: inline-block;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 7px solid #ff7f47;
  background: #fff;
  position: relative;
  z-index: 9;
}
.detail .a .tour_program .a3 .a4:before {
  content: "";
  position: absolute;
  border-left: 2px dashed #ccc;
  height: 100%;
  left: 14px;
  z-index: 8;
}
.detail .a .tour_program .a3 .a5 {
  border-bottom: 1px dashed #ccc;
  padding: 20px 0;
  margin-bottom: 20px;
}
.detail .a .tour_program .a3 .a5 h2 {
  font-size: 25px;
  color: #222;
  padding-bottom: 20px;
}
.detail .a .tour_program .a3 .a5 p {
  color: #737679;
  line-height: 22px;
}
.detail .a .tour_program .a3:last-child .a4:before {
  display: none;
}
.detail .a .tour_program .a3:last-child .a5 {
  border-bottom: 0;
}
.detail .a .a6 {
  margin-left: 50px;
  padding: 20px;
  background: #f6f6f6;
  border-radius: 10px;
}
.detail .a .a7 {
  margin-left: 50px;
  padding: 40px 0 20px 0;
}
.detail .b {
  width: 400px;
}
.detail .b .box {
  box-shadow: 0 0 64px rgba(17, 17, 17, 0.1);
  padding: 30px 25px;
  border-radius: 10px;
  background: #fff;
}
.detail .b .benzerTur {
  margin: 0;
  padding: 20px 0 0 0;
}
.detail .b .benzerTur .tur {
  display: flex;
  margin-bottom: 30px;
}
.detail .b .benzerTur .tur .turImg {
  display: inline-block;
  width: 80px;
  min-width: 80px;
  position: relative;
}
.detail .b .benzerTur .tur .turImg img {
  width: 100%;
  border-radius: 5px;
  display: block;
}
.detail .b .benzerTur .tur .turImg span {
  position: absolute;
  background: #fff;
  padding: 1px 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--colorOrange);
  border-radius: 4px;
  right: 5px;
  bottom: 5px;
}
.detail .b .benzerTur .tur .turInfo {
  padding-left: 15px;
}
.detail .b .benzerTur .tur .turInfo h3 {
  font-size: 16px;
}
.detail .b .benzerTur .tur .turInfo span {
  font-size: 12px;
}
.detail .b .benzerTur .tur:last-child {
  margin-bottom: 0;
}
#nedenbiz {
  background: url(../images/achiv-shape.png) no-repeat center center #f5f5f5;
  margin: 100px 0 0 0;
  padding: 60px 0;
}
#nedenbiz .d-flex {
  justify-content: space-around;
}
#nedenbiz .b2 {
  font-size: 40px;
}
#nedenbiz .a1 {
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(3, 54, 63, 0.16), 0 2px 4px rgba(3, 54, 63, 0.08), 0 1px 2px rgba(3, 54, 63, 0.16), 0 -1px 2px rgba(3, 54, 63, 0.04);
  padding: 15px;
  background: rgba(255, 255, 255, 0.49);
  text-align: center;
}
#nedenbiz .a1 i {
  font-size: 60px;
}
#nedenbiz .a1 p {
  font-style: italic;
  font-size: 13px;
  color: #666;
}
#footer {
  background: #222;
  margin: 0;
  padding: 50px 0 0 0;
}
#footer h4 {
  color: white;
  font-size: 20px;
  font-weight: 600;
}
#footer ul {
  margin: 0;
  padding: 0;
}
#footer ul li {
  margin: 0;
  padding: 0;
  color: #eaeaea;
}
#footer ul li a {
  display: block;
  padding: 7px 10px;
  color: #eaeaea;
}
#footer .social a {
  display: inline-block;
  margin: 5px 10px 0 0;
  font-size: 30px;
  color: #eaeaea;
}
#footer .copyright {
  border-top: 1px dashed rgba(255, 255, 255, 0.35);
  margin: 10px 0 0 0;
  padding: 10px 0;
  color: #ccc;
  font-size: 13px;
}
#footer .copyright .contentC {
  display: flex;
  justify-content: space-between;
}
#ajanstr {
  width: 78px;
  height: 16px;
  background: url(../images/t.png) no-repeat top right;
  display: inline-block;
  overflow: hidden;
  margin-top: 8px;
}
#ajanstr:hover {
  width: 78px;
  height: 16px;
  background: url(../images/t.png) no-repeat bottom right;
  display: inline-block;
  overflow: hidden;
}
#ajanstr span {
  visibility: hidden !important;
}
/* ------------------------------------------------------ DIVIDER -------------------------------------------*/
hr.divider1 {
  padding: 0;
  border: none;
  border-top: medium double #666;
  color: #666;
  text-align: center;
}
hr.divider1:after {
  content: "à¸£Â‚à¸¢à¸‡";
  display: inline-block;
  position: relative;
  top: -0.7em;
  font-size: 1.5em;
  padding: 0 0.25em;
  background: white;
}
hr.divider2 {
  height: 6px;
  background: url(../images/hr-11.png) repeat-x 0 0;
  border: 0;
  margin: 15px 0;
  display: block;
}
hr.divider3 {
  height: 6px;
  background: url(../images/hr-12.png) repeat-x 0 0;
  border: 0;
}
hr.divider5 {
  border: 0;
  border-top: 1px dashed #8c8b8b;
}
hr.divider5:after {
  content: '\002702';
  display: inline-block;
  position: relative;
  top: -12px;
  left: 40px;
  padding: 0 3px;
  color: #8c8b8b;
  font-size: 18px;
}
hr.divider6 {
  height: 30px;
  border-style: solid;
  border-color: #8c8b8b;
  border-width: 1px 0 0 0;
  border-radius: 20px;
}
hr.divider6:before {
  display: block;
  content: "";
  height: 30px;
  margin-top: -31px;
  border-style: solid;
  border-color: #8c8b8b;
  border-width: 0 0 1px 0;
  border-radius: 20px;
}
.formInput label {
  padding-bottom: 20px;
  display: block;
  width: 100%;
}
.formInput label select,
.formInput label input,
.formInput label textarea {
  width: 100%;
  display: block;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  color: #666;
  padding: 10px 15px;
  background: #fff;
  font-size: 17px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.formInput label select {
  background: url(../images/_br_down.png) no-repeat right white;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-orange {
  background: #ff7f47;
  color: white;
  transition: all 0.5s ease 0s;
}
.btn-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.btn-banner img {
  width: 50px;
}
.colorS {
  color: var(--sColor);
}
.colorPink {
  color: var(--colorPink);
}
.colorOrange {
  color: var(----colorOrange);
}
.colorTurkuaz {
  color: #80d9ee;
}
.colorBlueLight {
  color: #666666;
}
.colorBlue3 {
  color: #1876b9;
}
.colorRed {
  color: red;
}
.colorBlue2 {
  color: #464646;
}
.colorGrey {
  color: #575757;
}
.colorWhite {
  color: #fff;
}
.colorBlack {
  color: #000;
}
.bgS {
  background: var(--sColor);
}
html .bgRed {
  background: var(--colorRed);
}
.bgBlue1 {
  background-color: var(--colorBlue);
}
.bgWhite {
  background-color: #FFFFFF;
}
.bgOrange {
  background-color: #ff7c2c;
}
.bgTurkuaz {
  background-color: #80d9ee;
}
.bgGrey {
  background-color: #e3eaef;
}
.fontSize9 {
  font-size: 9px;
}
.fontSize10 {
  font-size: 10px;
}
.fontSize11 {
  font-size: 11px;
}
.fontSize12 {
  font-size: 12px;
}
.fontSize13 {
  font-size: 13px;
}
.fontSize14 {
  font-size: 14px;
}
.fontSize15 {
  font-size: 15px;
}
.fontSize16 {
  font-size: 16px;
}
.fontSize17 {
  font-size: 17px !important;
}
.fontSize18 {
  font-size: 18px;
}
.fontSize19 {
  font-size: 19px;
}
.fontSize20 {
  font-size: 20px;
}
.fontSize21 {
  font-size: 21px;
}
.fontSize22 {
  font-size: 22px;
}
.fontSize23 {
  font-size: 23px;
}
.fontSize24 {
  font-size: 24px;
}
.fontSize25 {
  font-size: 25px;
}
.fontSize26 {
  font-size: 26px;
}
.fontSize27 {
  font-size: 27px;
}
.fontSize28 {
  font-size: 28px;
}
.fontSize29 {
  font-size: 29px;
}
.fontSize30 {
  font-size: 30px;
}
.fontSize35 {
  font-size: 35px;
}
.fontSize40 {
  font-size: 40px;
}
.fontSize44 {
  font-size: 44px;
}
.fontSize50 {
  font-size: 50px;
}
.fontSize75 {
  font-size: 75px;
}
.fontW300 {
  font-weight: 300;
}
.fontW400 {
  font-weight: 400;
}
.fontW600 {
  font-weight: 600;
}
.fontW700 {
  font-weight: 700;
}
html,
body,
div,
span,
select,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
input:focus,
textarea,
textarea:focus,
span,
a {
  outline: none !important;
  -moz-outline: none;
  -moz-user-focus: none;
}
select::-ms-expand {
  display: none;
}
@keyframes showNav {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blink {
  from {
    color: black;
    transform: scale(1.2);
  }
  to {
    color: red;
    transform: scale(1);
  }
}
@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes zoomIn {
  from {
    transform: scale(2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomFinish {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0);
  }
}
/* Global Margins - margin-# or m# increments of five until 50px then jumps to 50px */
.m0,
.margin-0 {
  margin: 0px;
}
.m5,
.margin-5 {
  margin: 5px;
}
.m10,
.margin-10 {
  margin: 10px;
}
.m15,
.margin-15 {
  margin: 15px;
}
.m20,
.margin-20 {
  margin: 20px;
}
.m25,
.margin-25 {
  margin: 25px;
}
.m30,
.margin-30 {
  margin: 30px;
}
.m35,
.margin-35 {
  margin: 35px;
}
.m40,
.margin-40 {
  margin: 40px;
}
.m45,
.margin-45 {
  margin: 45px;
}
.m50,
.margin-50 {
  margin: 50px;
}
.m70,
.margin-70 {
  margin: 70px;
}
.m100,
.margin-100 {
  margin: 100px;
}
.m150,
.margin-150 {
  margin: 150px;
}
.m200,
.margin-200 {
  margin: 200px;
}
.m250,
.margin-250 {
  margin: 250px;
}
/* Global Padding */
.p0,
.padding-0 {
  padding: 0px;
}
.p5,
.padding-5 {
  padding: 5px;
}
.p10,
.padding-10 {
  padding: 10px;
}
.p15,
.padding-15 {
  padding: 15px;
}
.p20,
.padding-20 {
  padding: 20px;
}
.p25,
.padding-25 {
  padding: 25px;
}
.p30,
.padding-30 {
  padding: 30px;
}
.p35,
.padding-35 {
  padding: 35px;
}
.p40,
.padding-40 {
  padding: 40px;
}
.p45,
.padding-45 {
  padding: 45px;
}
.p50,
.padding-50 {
  padding: 50px;
}
.p100,
.padding-100 {
  padding: 100px;
}
.p150,
.padding-150 {
  padding: 150px;
}
.p200,
.padding-200 {
  padding: 200px;
}
.p250,
.padding-250 {
  padding: 250px;
}
/* Specific Margins */
/* Margin Top - mt# or margin-top-# */
/* These should override the global margins so you can use m50 mt5 or margin-50 margin-top-5, yeah i got bored and just went up in 10s */
.mt0,
.margin-top-0 {
  margin-top: 0px;
}
.mt5,
.margin-top-5 {
  margin-top: 5px;
}
.mt10,
.margin-top-10 {
  margin-top: 10px;
}
.mt20,
.margin-top-20 {
  margin-top: 20px;
}
.mt30,
.margin-top-30 {
  margin-top: 30px;
}
.mt40,
.margin-top-40 {
  margin-top: 40px;
}
.mt50,
.margin-top-50 {
  margin-top: 50px;
}
.mt100,
.margin-top-100 {
  margin-top: 100px;
}
.mt150,
.margin-top-150 {
  margin-top: 150px;
}
.mt200,
.margin-top-200 {
  margin-top: 200px;
}
.mt250,
.margin-top-250 {
  margin-top: 250px;
}
/* Margin Bottom - mb# or margin-bottom-# */
.mb0,
.margin-bottom-0 {
  margin-bottom: 0px;
}
.mb5,
.margin-bottom-5 {
  margin-bottom: 5px;
}
.mb10,
.margin-bottom-10 {
  margin-bottom: 10px;
}
.mb20,
.margin-bottom-20 {
  margin-bottom: 20px;
}
.mb30,
.margin-bottom-30 {
  margin-bottom: 30px;
}
.mb40,
.margin-bottom-40 {
  margin-bottom: 40px;
}
.mb50,
.margin-bottom-50 {
  margin-bottom: 50px;
}
.mb70,
.margin-bottom-70 {
  margin-bottom: 70px;
}
.mb100,
.margin-bottom-100 {
  margin-bottom: 100px;
}
.mb150,
.margin-bottom-150 {
  margin-bottom: 150px;
}
.mb200,
.margin-bottom-200 {
  margin-bottom: 200px;
}
.mb250,
.margin-bottom-250 {
  margin-bottom: 250px;
}
/* Margin Left - ml# or margin-left-# */
.ml0,
.margin-left-0 {
  margin-left: 0px;
}
.ml5,
.margin-left-5 {
  margin-left: 5px;
}
.ml10,
.margin-left-10 {
  margin-left: 10px;
}
.ml20,
.margin-left-20 {
  margin-left: 20px;
}
.ml30,
.margin-left-30 {
  margin-left: 30px;
}
.ml40,
.margin-left-40 {
  margin-left: 40px;
}
.ml50,
.margin-left-50 {
  margin-left: 50px;
}
.ml100,
.margin-left-100 {
  margin-left: 100px;
}
.ml150,
.margin-left-150 {
  margin-left: 150px;
}
.ml200,
.margin-left-200 {
  margin-left: 200px;
}
.ml250,
.margin-left-250 {
  margin-left: 250px;
}
/* Margin Right - mr# or margin-right-# */
.mr0,
.margin-right-0 {
  margin-right: 0px;
}
.mr5,
.margin-right-5 {
  margin-right: 5px;
}
.mr10,
.margin-right-10 {
  margin-right: 10px;
}
.mr20,
.margin-right-20 {
  margin-right: 20px;
}
.mr30,
.margin-right-30 {
  margin-right: 30px;
}
.mr40,
.margin-right-40 {
  margin-right: 40px;
}
.mr50,
.margin-right-50 {
  margin-right: 50px;
}
.mr100,
.margin-right-100 {
  margin-right: 100px;
}
.mr150,
.margin-right-150 {
  margin-right: 150px;
}
.mr200,
.margin-right-200 {
  margin-right: 200px;
}
.mr250,
.margin-right-250 {
  margin-right: 250px;
}
/* Specific Padding */
/* Top Padding - pt# or padding-top-# */
.pt0,
.padding-top-0 {
  padding-top: 0px;
}
.pt5,
.padding-top-5 {
  padding-top: 5px;
}
.pt10,
.padding-top-10 {
  padding-top: 10px;
}
.pt20,
.padding-top-20 {
  padding-top: 20px;
}
.pt30,
.padding-top-30 {
  padding-top: 30px;
}
.pt40,
.padding-top-40 {
  padding-top: 40px;
}
.pt50,
.padding-top-50 {
  padding-top: 50px;
}
.pt70,
.padding-top-70 {
  padding-top: 70px;
}
.pt80,
.padding-top-80 {
  padding-top: 80px;
}
.pt100,
.padding-top-100 {
  padding-top: 100px;
}
.pt150,
.padding-top-150 {
  padding-top: 150px;
}
.pt200,
.padding-top-200 {
  padding-top: 200px;
}
.pt250,
.padding-top-250 {
  padding-top: 250px;
}
.pb0,
.padding-bottom-0 {
  padding-bottom: 0px;
}
.pb5,
.padding-bottom-5 {
  padding-bottom: 5px;
}
.pb10,
.padding-bottom-10 {
  padding-bottom: 10px;
}
.pb20,
.padding-bottom-20 {
  padding-bottom: 20px;
}
.pb30,
.padding-bottom-30 {
  padding-bottom: 30px;
}
.pb40,
.padding-bottom-40 {
  padding-bottom: 40px;
}
.pb50,
.padding-bottom-50 {
  padding-bottom: 50px;
}
.pb70,
.padding-bottom-70 {
  padding-bottom: 70px;
}
.pb100,
.padding-bottom-100 {
  padding-bottom: 100px;
}
.pb150,
.padding-bottom-150 {
  padding-bottom: 150px;
}
.pb200,
.padding-bottom-200 {
  padding-bottom: 200px;
}
.pb250,
.padding-bottom-250 {
  padding-bottom: 250px;
}
.pr0,
.padding-right-0 {
  padding-right: 0px;
}
.pr5,
.padding-right-5 {
  padding-right: 5px;
}
.pr10,
.padding-right-10 {
  padding-right: 10px;
}
.pr20,
.padding-right-20 {
  padding-right: 20px;
}
.pr30,
.padding-right-30 {
  padding-right: 30px;
}
.pr40,
.padding-right-40 {
  padding-right: 40px;
}
.pr50,
.padding-right-50 {
  padding-right: 50px;
}
.pr100,
.padding-right-100 {
  padding-right: 100px;
}
.pr150,
.padding-right-150 {
  padding-right: 150px;
}
.pr200,
.padding-right-200 {
  padding-right: 200px;
}
.pr250,
.padding-right-250 {
  padding-right: 250px;
}
.pl0,
.padding-left-0 {
  padding-left: 0px;
}
.pl5,
.padding-left-5 {
  padding-left: 5px;
}
.pl10,
.padding-left-10 {
  padding-left: 10px;
}
.pl20,
.padding-left-20 {
  padding-left: 20px;
}
.pl30,
.padding-left-30 {
  padding-left: 30px;
}
.pl40,
.padding-left-40 {
  padding-left: 40px;
}
.pl50,
.padding-left-50 {
  padding-left: 50px;
}
.pl60,
.padding-left-60 {
  padding-left: 60px;
}
.pl70,
.padding-left-70 {
  padding-left: 70px;
}
.pl80,
.padding-left-80 {
  padding-left: 80px;
}
.pl100,
.padding-left-100 {
  padding-left: 100px;
}
.pl150,
.padding-left-150 {
  padding-left: 150px;
}
.pl200,
.padding-left-200 {
  padding-left: 200px;
}
.pl250,
.padding-left-250 {
  padding-left: 250px;
}
@media screen and (max-width: 970px) {
  #contentMain {
    width: 100%;
    padding: 15px;
  }
  .mobilHide{display:none !important}
  .mobil {
    display: block !important;
  }
  #header {
    padding: 15px 15px 0 15px;
  }
  .contentC {
    width: 100%;
    padding: 0 15px;
    position: relative;
  }
  #header .contentC {
    padding-top: 0;
    display: flex ;
    align-items: center;
  }
  #logo {
    font-size: 20px;
  }
  #header #topMenu {
    display: none;
  }
  .contentC {
    width: 100%;
  }
  .menYonet {
    font-size: 30px;
    color: #000;
    cursor: pointer;
  }
  #menKapat {
    color: black;
  }
  #mobilMen {
    position: fixed;
    top: 0;
    left: -100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    width: 80%;
    height: 100%;
    overflow: auto;
  }
  #mobilMen ul li {
    list-style: none;
  }
  #mobilMen ul li a {
    color: #fff;
    display: block;
    font-size: 17px;
    padding: 9px 0;
  }
  #mobilMen ul li#menu-item-85 a {
    background: #fff;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
  }
  #mobilMen ul li a img {
    width: 100px;
  }
  .homeBanner {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    -webkit-overflow-scrolling: touch;
  }
  .homeBanner .a1 {
    width: auto;
    height: 100%;
    border-radius: 0;
  }
  .homeBanner .caption {
    position: absolute;
    top: 30px;
    color: #fff;
    padding: 0 30px;
  }
  .homeBanner .caption h3 {
    font-size: 30px;
    font-weight: 700;
  }
  .homeBanner .caption .n2 {
    text-align: left;
  }
  .homeBanner .caption p {
    max-width: 100%;
  }
  .homeBanner .ileri,
  .homeBanner .geri {
    display: none;
  }
  .homeBanner2 {
    background: #f1f1f1;
    border-radius: 15px;
    display: block ;
    margin-top: 100px;
  }
  .homeBanner2 .a1 {
    padding: 30px 40px 0 40px;
    width: 100%;
  }
  .homeBanner2 .b2 {
    display: flex;
    padding: 25px;
    justify-content: flex-start;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .homeBanner2 .b2 .b3 {
    width: 85%;
    min-width: 85%;
  }
  .homeBanner2 .b2 .b3 div {
    margin: 0 7px;
    background: #fff;
    padding: 10px 10px 20px 10px;
    border-radius: 10px;
  }
  .homeBanner2 .b2 .b3 div img {
    width: 100%;
    border-radius: 7px;
  }
  .homeBanner2 .b2 .b3 div h3 {
    padding: 10px 0;
    font-size: 17px;
    margin: 0;
  }
  .homeBanner2 .b2 .b3 div p {
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 13px;
    color: #666;
  }
  .homeBanner2 .b2 .b3 div span {
    font-size: 14px;
  }
  #nedenbiz {
    padding: 60px 25px;
  }
  #nedenbiz .d-flex {
    display: block !important;
  }
  #nedenbiz .b2 {
    font-size: 20px;
  }
  #nedenbiz .a1 {
    margin-bottom: 15px;
    padding: 10px 15px;
  }
  #nedenbiz .a1 h4 {
    font-size: 15px;
  }
  #nedenbiz .a1 i {
    font-size: 25px;
  }
  #nedenbiz .a1 p {
    font-style: italic;
    font-size: 13px;
    color: #666;
  }
  .mobilSlideDisable {
    overflow-y: hidden;
    overflow-x: auto;
    display: flex;
    -webkit-overflow-scrolling: touch;
  }
  .mobilSlideDisable .c1 {
    width: 85%;
    min-width: 85%;
  }
  .mobilSlideDisable .d1 h2 a {
    font-size: 15px;
    letter-spacing: 0;
  }
  .mobilSlideDisable .d1 .f1 {
    font-size: 14px;
    white-space: nowrap;
  }
  .productList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0;
  }
  .productList .product {
    width: 100%;
    padding-bottom: 30px;
    border-radius: 10px;
    margin-bottom: 60px;
    transition: all 0.5s ease 0s;
  }
  .productList .product .img {
    display: block;
    overflow: hidden;
    height: 150px;
  }
  .productList .product .img img {
    border-radius: 10px 10px 0 0;
  }
  .productList .product .ic {
    padding: 0 20px;
  }
  .productList .product h2 {
    margin: 0;
    padding: 10px 0 0 0;
  }
  .productList .product h2 a {
    font-size: 20px;
    padding: 10px 0;
    font-weight: 600;
    color: black;
  }
  .productList .product .days {
    color: #7B7B7B;
  }
  .productList .product .price {
    font-weight: 300;
    font-size: 13px;
    display: flex;
    align-items: center;
    padding-top: 15px;
  }
  .productList .product .price span {
    font-weight: 700;
    color: #E16900;
    font-size: 20px;
    margin-left: 10px;
    line-height: 20px;
  }
  .productList .product .destination {
    font-size: 14px;
    color: #a75300;
    padding: 10px 30px 0 0;
  }
  .productList .product:hover {
    background: #f9f9f9;
    transition: all 0.5s ease 0s;
  }
  .productList .a1 {
    width: 100%;
    display: block;
    padding: 0;
    border-radius: 10px;
  }
  .productList .a1 .img {
    display: block;
    overflow: hidden;
    height: 150px;
  }
  .productList .a1 .img img {
    width: 100%;
    border-radius: 10px 10px 0 0;
  }
  .productList .a1 .ic {
    padding: 20px;
  }
  .productList .a1:hover {
    background: #f9f9f9;
    transition: all 0.5s ease 0s;
  }
  .detail {
    flex-wrap: wrap;
  }
  .detail .a {
    width: 100%;
    padding-right: 0;
  }
  .detail .a .img img {
    width: 100%;
    border-radius: 10px;
  }
  .detail .a .title h1 {
    font-size: 20px;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .detail .a .title .price {
    padding: 5px 10px;
  }
  .detail .a .bar {
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .detail .a .bar .c {
    width: 50%;
    padding: 5px 0;
  }
  .detail .a .a1 {
    display: flex;
    justify-content: space-between;
  }
  .detail .a .a1 a {
    font-size: 15px;
    border: 1px solid #ff7f47;
    padding: 7px 13px;
    margin-right: 5px;
    display: block;
    text-align: center;
  }
  .detail .a .a1 a i {
    font-size: 15px;
    margin-right: 0;
    display: block;
    text-align: center;
  }
  .detail .a .a1.stick {
    background: #fff;
    width: 95%;
  }
  .detail .a .tour_program {
    padding: 40px 0 0 0;
  }
  .detail .a .tour_program .a3 {
    display: flex;
  }
  .detail .a .tour_program .a3 .a4 {
    padding-right: 10px;
    position: relative;
    padding-top: 23px;
  }
  .detail .a .tour_program .a3 .a4 span {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 7px solid #ff7f47;
    background: #fff;
    position: relative;
    z-index: 9;
  }
  .detail .a .tour_program .a3 .a4:before {
    content: "";
    position: absolute;
    border-left: 2px dashed #ccc;
    height: 100%;
    left: 14px;
    z-index: 8;
  }
  .detail .a .tour_program .a3 .a5 {
    border-bottom: 1px dashed #ccc;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .detail .a .tour_program .a3 .a5 h2 {
    font-size: 17px;
    color: #222;
    padding-bottom: 10px;
  }
  
  
  
  .detail .a .tour_program .a3 .a5 p {
    color: #737679;
    line-height: 22px;
  }
  .detail .a .tour_program .a3:last-child .a4:before {
    display: none;
  }
  .detail .a .tour_program .a3:last-child .a5 {
    border-bottom: 0;
  }
  .detail .a .a6 {
    margin: 0;
    padding: 20px;
  }
  .detail .a .a7 {
    margin-left: 0;
    padding: 40px 0 20px 0;
  }
  .detail .a .acf-table-editor tr:first-child td:first-child {
    width: inherit;
  }
  .detail .b {
    width: 100%;
  }
  #footer ul {
    padding-left: 30px;
  }
  #footer h4 {
    margin-top: 20px;
  }
}
