@charset "utf-8";
/* CSS Document */



/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --bg: hsl(0 0% 2%);
  --primary-bg: linear-gradient(var(--primary), var(--primary));
  --white-color: #ffffff;
  --primary-color: #23211E;
  --secondary-color: #F50707;
  --section-bg-color: #f0f8ff;
  --custom-btn-bg-color: #F50707;
  --custom-btn-bg-hover-color: #c01f27;
  --dark-color: #000000;
  --p-color: #000000;
  --border-color: #7fffd4;
  --link-hover-color: #B22727;
  --bg-color0: #ffffff;
  --bg-color1: #ca3539;
  --bg-color2: #f25454;
  --bg-color3: #f25454;
  --bg-color4: #edafaf;

  --bg-color5: #7367f0;
  --bg-color6: #5044d2;
  --bg-color7: #2f72d6;
  --bg-color4: #aba5ed;
  --bg-color8: #aba5ed;
  --bg-color: 9 #001d55;
  --bg-color: 10 #212121;

  --body-font-family: "Inter", serif !important;
  --heading-font: "Inter", serif !important;
  ;
  --h1-font-size: 184px;
  --h2-font-size: 76px;
  --h3-font-size: 46px;
  --h4-font-size: 32px;
  --h5-font-size: 26px;
  --h6-font-size: 22px;
  --p-font-size: 18px;
  --btn-font-size: 14px;
  --copyright-font-size: 16px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;

  --background-color: #ffffff;

}

.bg-color0 {
  background-color: var(--bg-color0);
}

.bg-color1 {
  background-color: var(--bg-color1);
}

.bg-color2 {
  background-color: var(--bg-color2);
}

.bg-color3 {
  background-color: var(--bg-color3);
}

.bg-color5 {
  background-color: var(--bg-color5);
}

.bg-color6 {
  background-color: var(--bg-color6);
}

.bg-color7 {
  background-color: var(--bg-color7);
}

.bg-color8 {
  background-color: var(--bg-color8);
}

.bg-color9 {
  background-color: var(--bg-color9);
}

.bg-color10 {
  background-color: var(--bg-color10);
}

.secondary-color {
  color: var(--secondary-color: #F50707);
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}





/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/
h1 {
  font-family: var(--heading-font);
}


h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  font-family: var(--heading-font);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: var(--font-weight-bold);
}


h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-extrabold) !important;
  line-height: 0.9;
  letter-spacing: -1;
}



h2 {
  font-size: var(--h2-font-size);
  line-height: 1.3;
  letter-spacing: -0.6;
}

h3 {
  font-size: var(--h3-font-size);
  line-height: 1.3;
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
  line-height: 1.6;
  font-weight: 400;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);


}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
  font-family: var(--heading-font);
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;

}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


.link-fx-1 {
  color: var(--white-color);
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 6px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.link-fx-1:hover {
  color: var(--link-hover-color);
}

.link-fx-1:hover::before {
  transform: translateX(17px) scaleX(0);
  transition: transform .2s;
}

.link-fx-1:hover .icon circle {
  stroke-dashoffset: 200;
  transition: stroke-dashoffset .2s .1s;
}

.link-fx-1:hover .icon line {
  transform: rotate(-180deg);
}

.link-fx-1:hover .icon line:last-child {
  transform: rotate(180deg);
}

.link-fx-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform-origin: right center;
  transition: transform .2s .1s;
}

.link-fx-1 .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(100%) rotate(90deg);
  font-size: 32px;
}

.icon {
  --size: 1em;
  height: var(--size);
  width: var(--size);
  display: inline-block;
  color: inherit;
  fill: currentColor;
  line-height: 1;
  flex-shrink: 0;
  max-width: initial;
}

.link-fx-1 .icon circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset .2s;
}

.link-fx-1 .icon line {
  transition: transform .4s;
  transform-origin: 13px 15px;
}

.link-fx-1 .icon line:last-child {
  transform-origin: 19px 15px;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}




/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.c-button2 {
  margin-top: 3px;
  margin-left: 10px;
}

.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 7px 20px;
  text-transform: uppercase;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}


.navbar-toggler {
  color: #adb5bd;
}

/*---------------------------------------
  VIDEO              
-----------------------------------------*/
.video-wrap {
  z-index: -100;

}

.custom-video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.fixed-top {
  top: -41px !important;
  transform: translateY(40px);
  transition: transform .3s;
}

.navbar.fixed-top {
  background-color: #001d55 !important;
}

.navbar-collapse.collapse.show {
  background-color: #001d55 !important;
  padding: 25px !important;
}

.navbar {
  position: relative;

}

.navbar {
  background-color: transparent !important;
  z-index: 3;

}

.navbar-nav .nav-item .nav-link {
  color: #fff;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;

}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--link-hover-color);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;

}

.dropdown-menu .dropdown-item {
  text-transform: uppercase;
  font-size: 16px;
}

ul.dropdown-menu li .dropdown-item {
  padding-left: 15px !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 0px;
}

/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  height: calc(100vh + 0vh);
  margin-top: -94px;
}

.hero-section small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section .section-overlay {
  z-index: 1;
  opacity: 0.45;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section .container .row {
  height: 100%;
}

.slunder {
  display: inline-block;
  border-radius: 30px;
  transform: rotate(-50deg);
  font-size: 20px;
  font-weight: bold;
  padding: 10px 10px 10px 20px;
  color: #fff;
}

a span.slunder:hover {
  color: #adb5bd;
}

.sndr {
  height: 40px;
  width: 125px;
  background-color: #F50707;
  position: relative;
  top: -50px;
  left: -55px;
}

.sndr2 {
  height: 40px;
  width: 135px;
  background-color: #3261A7;
  position: relative;
  top: -50px;
  left: -165px;
}

.sndr3 {
  height: 40px;
  width: 150px;
  background-color: #7118BE;
  position: relative;
  top: -50px;
  left: -285px;
}

:root {
  --bar-scale-y: 0;
  --sparkle-color: rgb(253 244 215 / 40%);
}

@keyframes pop-word {
  to {
    transform: rotateX(0);
  }
}

@keyframes show {
  to {
    opacity: 1;
  }
}

@keyframes bar-scale {
  to {
    transform: scaleY(1);
  }
}

@keyframes sparkle {
  0% {
    transform: scale(0);
  }

  60% {
    transform: scale(1) translate(4px, 1px) rotate(8deg);
  }

  100% {
    transform: scale(0) translate(4px, 1px) rotate(8deg);
  }
}

@keyframes shimmer {
  to {
    text-shadow: 0 0 8px red;
  }
}



h1.word {

  perspective: 100px;
}

.word {
  display: block;

  animation: show 0.02s forwards, pop-word 1.5s forwards;
  animation-timing-function: cubic-bezier(0.14, 1.23, 0.33, 1.16);
  opacity: 0;

  transform: rotateX(120deg);
  transform-origin: 50% 100%;

}

.word:nth-of-type(2) {

  animation-delay: 0.7s;
  color: gold;
}

.word:nth-of-type(3) {

  animation-delay: 10.7s;
  color: gold;
}


h2.word,
h3.word {
  perspective: 2000px;
}



/*---------------------------------------
  HOME- INTRO        
-----------------------------------------*/
.Intro {
  height: 100vh;

}

.drt-message h1 {
  font-size: 130px;
  padding-top: 40px;
  display: inline-block;
  color: var(--bg-color5);
}

.drt-message h4 {
  display: inline-block;
  position: relative;
  top: -26px;
  left: 20px;
  line-height: 45px;
}

.drt-message h6 {
  font-weight: var(--font-weight-light);
}

.drt-message p {
  font-size: 16px;
}

.drt-message h6.bold {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0%;

}

.drt-message-title a {
  font-size: 22px;
  color: #000;
  font-weight: var(--font-weight-light);
}

.drt-message {
  padding-left: 70px !important;

}






/*---------------------------------------
  CAMP YACHAD
-----------------------------------------*/

.camp-services {
  background-image: url('../images/prc_bg.jpg');
  background-repeat: no-repeat;
  height: 110vh;
  background-size: cover;
}

.camp-services-contents {
  width: 100%;
  margin-top: 180px;
}


.accordion,
.accordion-item {
  width: 100%;

}

.accordion-header,
.accordion-item,
.accordion-button {
  border-radius: 15px !important;
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  background-color: #ffffff;

}

.accordion-button {
  padding: 20px 30px 14px 30px;
}



.accordion-button:focus {
  z-index: 3;
  border-color: #ffffff;
  outline: 0;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #fff;
  box-shadow: none;

}

.accordion-button:not(.collapsed) h4 {
  color: #F50707;
  background-color: #fff;


}

.accordion-body {
  padding: 0px 23px 23px 40px;
}

.camp-services-images {
  width: 100%;
  height: auto;
}

.image-tab h6 {
  border-radius: 50px;
  padding: 10px 20px 10px 20px;
  background-color: #fff;
  display: block;
  width: fit-content;
  position: relative;
  z-index: 5;

}

.camp-yd {
  width: 520px;

  overflow: hidden;
  box-shadow: 0;
  transform: translatey(0px);
  animation: float 4s ease-in-out infinite;
}

.kids-colm {
  height: 590px;
  overflow: hidden;
  box-shadow: 0;
  transform: translatey(0px);
  animation: float 5s ease-in-out infinite;
}

.camp-colm {
  height: 445px;
  overflow: hidden;
  box-shadow: 0;
  transform: translatey(0px);
  animation: float 3s ease-in-out infinite;
}


@keyframes float {
  0% {

    transform: translatey(0px);
  }

  50% {

    transform: translatey(-20px);
  }

  100% {

    transform: translatey(0px);
  }
}


.camp-yd {
  position: relative;
  z-index: 1;
  top: 20px;
}

.camp-yd h6 {
  left: 160px;
  top: 65px;
}

.kids-colm img {
  margin-top: -145px;
  position: relative;
  top: -50px;
  z-index: 2;

}

.kids-colm h6 {
  left: 140px;
  top: -25px;
  z-index: 3;
}

.camp-colm {
  margin-top: -300px;
  position: relative;
  top: -160px;
  right: 160px;
}

.camp-colm h6 {
  left: 150px;
  top: 70px;
}


/*---------------------------------------
  SERVICES        
-----------------------------------------*/
.cy-services-contents {
  border-left: 3px solid #D9D9D9;

}

.cy-sports,
.cy-trips,
.cy-learnings {
  margin-left: -3px;
}

.cy-sports {
  border-left: 3px solid #F50707;
}

.cy-sports h3,
.cy-trips h3,
.cy-learnings h3 {
  font-size: 45px;

}




.cy-image-label {

  background-color: #fff;
  padding: 30px;
  position: relative;
  top: -180px;
  width: 35%;
  margin-left: 45px;
  border: solid 1px #D9D9D9;
}

.cy-image-label h3 {}



.form-control,
.input-group-text {
  border-radius: 6px;
  padding: 10px;
  text-align: left;
  margin-top: 5px;
}

select {
  word-wrap: normal;
  padding: 0.8rem 0.8rem 0.8rem 0.8rem !important;

}

.subs {
  padding: 10px;

}


#inputGroupFileAddon04 {
  height: 45px !important;
  margin-top: 6px !important;
  background-color: #000 !important;
  color: #fff !important;
}

#inputGroupFileAddon04 :hover {}


/*---------------------------------------
  Pictures        
-----------------------------------------*/

.close {
  font-size: 1.5rem;
}

ul.portfolio-filters li.tab-item {

  font-size: 22px;
  font-weight: var(--font-weight-semibold);
}

ul.portfolio-filters li.tab-item:hover {

  color: #c01f27;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

.portfolio {
  padding-top: px !important;

}

.portfolio-filters {
  padding: 0;
  margin: 0 auto 40px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;


}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}


@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {

  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}


/*---------------------------------------
  HERO-SUB   
-----------------------------------------*/
.hero-section2 {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  height: calc(100vh - 50vh);
}

.hero-section2 small {
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-section2 .section-overlay {
  z-index: 2;
  opacity: 0.45;
}

.hero-section2 .container {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-bottom: 50px;
}

.hero-section2 .container .row {
  height: 100%;
}


.pictures {
  background-image: url(../images/picture_bg.png);
}

.videos {
  background-image: url(../images/video_bg.png);
}

.about {
  background-image: url(../images/about_bg.png);
}

.contact {
  background-image: url(../images/contact_bg.png);
}


.catalog {
  background-image: url(../images/catalog_bg.png);
}

.staff_app {
  background-image: url(../images/staff_bg.png);
}



.videos,
.pictures,
.contact,
.about,
.catalog,
.staff_app {
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 75vh;
  margin-top: -100px;
}


.videos h3,
.pictures h3,
.contact h3,
.about h3,
.catalog h3,
.staff_app h3 {
  margin-top: ;
  color: #fff;
  font-size: 60px;
  margin-top: -90px;

}

.head-border {
  border-bottom: solid 1px var(--bg-color0);
  display: block;
  width: 200px;
  word-wrap: inherit;
}

.info-area {
  padding-top: 80px;
  padding-bottom: 80px;
}

.get-in-touch {
  margin-bottom: 40px;
}

h3.get-in-touch span {
  color: #B22727;

}

.map-area {
  margin-bottom: 80px;
}

.icon-area {
  height: 60px;
  width: 60px;
  line-height: 60px;
  background: #fff;
  color: #383838;

}

.icon-area i {
  font-size: 30px;

}


/*---------------------------------------
  ABOUT               
-----------------------------------------*/


.experiance-section {
  position: relative;
  padding-top: 150px;
}

.experiance-section.style-two {
  padding-bottom: 60px;
}

.experiance-section .title-column {
  position: relative;
  margin-bottom: 40px;
}

.experiance-section .title-column .inner-column {
  position: relative;
}

.experiance-section .title-column .image {
  position: relative;
  margin-bottom: 60px;
}

.experiance-section .title-column h2 {
  position: relative;
  color: #000000;
  margin-bottom: 20px;
}

.specialise-box .inner-box .content h4 {
  font-weight: 600;
  font-size: 26px;
  border-radius: 30px;
}

.experiance-section .title-column .text {
  position: relative;
  color: #666666;
  margin-top: 35px;
}

.experiance-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

.experiance-section .content-column .inner-column {
  position: relative;
}

.experiance-section .content-column .title-box h2 {
  position: relative;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.experiance-section .content-column .title-box p {
  position: relative;
  color: #666666;
  margin-bottom: 12px;
}

.experiance-section .content-column .specialization-box {
  position: relative;
  margin-top: 50px;
}

.experiance-section .content-column .specialization-box h2 {
  margin-bottom: 28px;
  position: relative;

  color: #000000;

}

.specialise-box {
  position: relative;
  margin-bottom: 30px;
}

.specialise-box .inner-box {
  position: relative;
  padding: 26px 50px;
  border: 1px solid #d9d9d9;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  border-radius: 6px;
}

.specialise-box .inner-box:before {
  position: absolute;
  content: '';
  left: -1px;
  top: 0px;
  bottom: 0px;
  width: 3px;
  opacity: 0;
  background-color: #e11a1a;
  transform: scale(1, 0.2);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.specialise-box .inner-box:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.specialise-box .inner-box:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.10);
}

.specialise-box .inner-box .content {
  position: relative;
  padding-left: 120px;
}

.specialise-box .inner-box .content .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  color: #999999;
  font-size: 64px;
  line-height: 1em;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.specialise-box .inner-box:hover .content .icon {
  color: #e11a1a;
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.specialise-box .inner-box .content h5 {
  position: relative;
  font-weight: 600;
  line-height: 1.3em;
}

.specialise-box .inner-box .content h5 a {
  position: relative;
  color: #000000;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.specialise-box .inner-box:hover .content h5 a {
  color: #e11a1a;
}

.specialise-box .inner-box .content p {
  position: relative;
  color: #666666;
  line-height: 1.9em;
  margin-top: 14px;
  font-size: 14px;
}

.icon {
  color: #999;
  font-size: 72px;
  line-height: 1em;
}




/*---------------------------------------
  ABOUT- TESTIMONIALS               
-----------------------------------------*/

.testimonials {}


.testimonials h2 span {
  font-weight: var(--font-weight-light);

}

.section-title {
  margin-bottom: 100px;
}

.section-title .title {
  margin-bottom: 100px;
}


.section-title .icon {
  display: inline-block;

  position: relative;
}

.section-title .icon .icon-img {}

.section-title .icon .icon-shape {
  position: absolute;
  right: -37%;
  top: -20px;
  z-index: -1;
}

.testimonial-content-area {
  padding-left: 120px;
}

.testimonial-card p.lead {
  font-size: 24px;
  font-weight: var(--font-weight-medium);
  margin-bottom: 40px;
}

.testimonial-card h6 {
  color: var(--bg-color6);
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}

.testimonial-card p.text-muted {
  font-size: 16px;
  font-weight: var(--font-weight-light);
  color: #666666;
  text-transform: uppercase;
}

.testimonial-slider-container .swiper-button-prev {
  color: #aba5a5;
  display: inline-block;
  font-size: 30px;
  left: 0;
  margin-top: 53px;
  position: relative;
  right: auto;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
  -ms-transition: .3s;
  -o-transition: .3s;
}

.section-title h3 span {
  font-weight: var(--font-weight-light);
}

.lnr {
  font-family: linearicons-free;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.testimonial-slider-container .swiper-button-prev {
  color: #aba5a5;
  font-size: 30px;
}


.carousel-control-prev {
  position: absolute;
  top: 275px;
  left: -33px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #000;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 1.5rem;
  width: 1.5rem;
}

.carousel-control-next {
  position: absolute;
  top: 275px;
  left: 20px;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;

}



.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");

}






/*---------------------------------------
  CATALOG               
-----------------------------------------*/

.card .card-header {

  background-color: transparent !important;
  border-bottom: none !important;
  background-repeat: no-repeat;
  max-height: 200px;
}


.card-cover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}


.card-header h4 {
  color: #001d55;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;

}




.pricing-card-title {

  color: var(--bg-color5);
  font-weight: var(--font-weight-medium);
}

.pricing-card-title sup {
  color: #000;
  font-weight: var(--font-weight-light);
  font-size: 22px;
  color: #5f5f5f;
  top: -24px;
  font-weight: var(--font-weight-medium);
  position: relative;
}

.card-body {
  padding-top: 10px !important;
}

.card-body ul {
  margin-left: 20px !important;
  padding-top: 20px;
  padding-bottom: 50px;
  ;
}


.card-body ul li {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;


}

.card-body ul li span {
  line-break: auto;
  display: block;
}





/*---------------------------------------
  FOOTER               
-----------------------------------------*/


footer {
  background-color: #212121;
  color: #fff;
}

.footer-link-item {
  color: #fff;
}






@media (max-width:1400px) {

  .camp-services {
    background-image: url('../images/prc_bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 80%;

    margin-bottom: -200px;
  }

}



@media (max-width:1200px) {

  .slunder {
    display: none;
    border-radius: 30px;
    transform: rotate(-50deg);
    font-size: 20px;
    font-weight: bold;
    padding: 10px 10px 10px 20px;
  }


}


@media (max-width:992px) {

  .camp-coolam-box {
    text-align: center;
    position: relative;
    top: -330px;
    right: 100px;
  }

  .drt-message {
    padding-left: 0px;
    margin-left: 0px;
    ;
  }

  .camp-services {
    background-image: url('../images/prc_bg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 80%;

    margin-bottom: -400px;
  }

  .px-lg-5 {
    padding-left: 3rem;
  }
}

@media (max-width:767.98px) {

  h1 {
    font-size: 120px;
  }

  h2 {
    font-size: 55px;
  }

}

.border-top.border-dark-subtle {
  border-color: #3e3e3e !important;
}

.scroll-top i {
  font-size: 30px;
  color: #5044d2 !important;
  position: absolute;

  z-index: 10000000;
  right: 100px;
  top: -100px;
  margin-top: -300px;
}






owl-1 .owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
}

.owl-1 .owl-nav .owl-next,
.owl-1 .owl-nav .owl-prev {
  border: 1px solid red;
  z-index: 92;
  position: absolute;
  top: 50%;
}

.owl-1 .owl-nav .owl-next:active,
.owl-1 .owl-nav .owl-next:focus,
.owl-1 .owl-nav .owl-prev:active,
.owl-1 .owl-nav .owl-prev:focus {
  outline: none;
}

.owl-1 .owl-nav .owl-next span,
.owl-1 .owl-nav .owl-prev span {
  color: #fff;
}

.owl-1 .owl-nav .owl-next span:before,
.owl-1 .owl-nav .owl-prev span:before {
  font-size: 40px !important;
}

.owl-1 .owl-nav .owl-next {
  border: 4px solid blue;
  right: 20px;
}

.owl-1 .owl-nav .owl-prev {
  left: 20px;
}

.owl-1 .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.owl-1 .owl-dots .owl-dot {
  background: none;
  display: inline-block;
}

.owl-1 .owl-dots .owl-dot>span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 4px;
}

.owl-1 .owl-dots .owl-dot.active>span {
  background: white;
}

.owl-1 .owl-dots .owl-dot:active,
.owl-1 .owl-dots .owl-dot:focus {
  outline: none;
}

.media-29101 .img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.img img {

  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.media-29101 .text {
  padding: 50px;
}

@media (max-width: 991.98px) {
  .media-29101 .text {
    padding: 20px;
    width: 100%;
  }
}

.media-29101 .text .category {
  color: #adb5bd;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .2rem;
}

.media-29101 .text h2 {
  font-family: "Playfair Display", times, serif;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 30px;
}

.media-29101 .text h2 a {
  color: #000;
}

.carousel-nav {
  width: 100%;
  border-bottom: 1px solid #ccc !important;
  margin-bottom: 40px;
  padding-top: 40px !important;
}

.carousel-nav .col {
  width: 90%;
}

.carousel-nav a {
  color: #999;
  padding: 20px;
  text-align: center;
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: var(--font-weight-semibold);
}

.carousel-nav a:hover {
  color: #e11a1a;
}

.carousel-nav a.active {
  color: #e11a1a;
}

.carousel-nav a.active:before {
  content: "";
  bottom: 0px;
  left: 0;
  right: 0;
  position: relative;
  border-bottom: 1px solid #e11a1a !important;
}


.img-square img {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: transparent;
}

span.break {
  display: block;
  line-break: auto;
  padding-top: 5px;
}

@media (max-width:834px) {

  .testimonial-content-area {
    padding-left: 0px;
  }
}

@media (max-width:412px) {

  .testimonial-content-area {
    padding-left: 20px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    top: 350px;

  }

  .carousel-control-prev {
    left: -20px;

  }

  .carousel-control-next {}
}


@media (min-width:1440) {
  .camp-services {

    height: 120vh;
    background-size: cover;
  }

  .camp-colm {
    margin-top: -340px;
    position: relative;
    top: -160px;
    right: 160px;
  }

  .camp-colm h6 {
    left: 150px;
    top: 70px;
  }


}


.about-tours {
  height: 110vh;
}


.bdr-1 {
  position: relative;
  left: 90px;
  z-index: -5;
  top: -735px;
  max-height: 10%;
}

.tours-features {
  z-index: 11111111;
  position: relative;
  height: 100vh !important;
  align-items: center;
}

.f-box {
  padding: 40px;
  background-color: #212121;
  width: 310px;
  height: 250px;
  border-radius: 20px;
}

.f-box:hover {
  background-color: #212121;
  cursor: pointer;
  background-color: var(--bg-color1);
}

.f-box ul {
  list-style: none;
  padding: 0px;
  width: 100%;
}

.f-box ul li {
  color: #fff;

}

.f-box ul li.numb {
  font-size: 30px;
  font-weight: var(--font-weight-medium);
  display: inline-block;
  width: 75%;
}

.f-box ul li.icon {
  font-size: 48px;
  vertical-align: middle;
  display: inline-block;

}

.f-box ul li.lab {
  font-size: 18px;
  font-weight: var(--font-weight-medium);
  padding-top: 70px;
}

.yachad-child {

  height: 100%;
}

.yachad-child-info {

  height: 100%;
  background-image: url(../images/bg-banner.png);
}

.yachad-child-details {
  padding: 100px;
}


.sports-header {
  padding-top: 30px;
}

.sports-title h6 {
  color: #aba5a5;
  font-weight: var(--font-weight-semibold);
}




.specialise-box2 {
  position: relative;
  margin-bottom: 30px;
}

.specialise-box2 .inner-box2 {
  position: relative;
  padding: 26px 50px;
  border: 1px solid #d9d9d9;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  border-radius: 6px;
}

.specialise-box2 .inner-box2:before {
  position: absolute;
  content: '';
  left: 0px;

  top: 0px;
  bottom: 300px;
  width: 100%;
  height: 3px;
  opacity: 0;
  background-color: #e11a1a;
  transform: scale(0.2, 1);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.specialise-box2 .inner-box2:hover::before {
  opacity: 1;
  transform: scale(1, 1);

}

.specialise-box2 .inner-box2:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.10);
  background-color: #23211E;
}

.specialise-box2 .inner-box2:hover .content2 p {
  color: #fff;
}


.specialise-box2 .inner-box2 .content2 {
  position: relative;
}

.specialise-box2 .inner-box2 .content2 .icon {
  position: absolute;
  left: 0px;
  top: 15px;
  color: #999999;
  font-size: 58px;
  line-height: 1em;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.specialise-box2 .inner-box2:hover .content2 .icon {
  color: #fff;
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.specialise-box2 .inner-box2 .content2 h5 {
  position: relative;
  font-weight: 600;
  line-height: 1.3em;
  padding-top: 100px;
}

.specialise-box2 .inner-box2 .content2 h5 a {
  position: relative;
  color: #000000;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.specialise-box2 .inner-box2:hover .content2 h5 a {
  color: #fff;
}

.specialise-box2 .inner-box2 .content2 p {
  position: relative;
  color: #666666;
  line-height: 1.9em;
  margin-top: 14px;
  font-size: 14px;
}


.specialise-box2 .inner-box2 .content2 p {
  position: relative;
  color: #666666;
  line-height: 1.9em;
  margin-top: 14px;
  font-size: 14px;
}

.icon {
  color: #999;
  font-size: 72px;
  line-height: 1em;
}

.refferl-info {
  height: 65vh;
  background-image: url(../images/bg-banner2.png);
}

.fw-semi {}

.custom-btn3 {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 10px 20px;
  text-transform: uppercase;
}

.custom-btn3:hover {
  background: var(--bg-color3);
  color: var(--white-color);
}


h6.small {
  color: #adb5bd;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .2rem;
}