:root {
  --primary: #3EB4C6;
  --secondary: #046c79;
  --filterPrimary: invert(53%) sepia(8%) saturate(2435%) hue-rotate(140deg) brightness(110%) contrast(112%);
  --filterSecondary: invert(15%) sepia(95%) saturate(3800%) hue-rotate(176deg) brightness(96%) contrast(97%);
  --filterWhite: invert(99%) sepia(0%) saturate(4787%) hue-rotate(41deg) brightness(127%) contrast(96%);
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'Tajawal', sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: var(--primary);
  color: #fff;
}

*::selection {
  background-color: var(--primary);
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

body {
  direction: rtl;
  overflow-x: hidden;
}

/**********************************************
   Start Global Style
**********************************************/
.color-gray {
  color: #ccc;
}

.color-gray2 {
  color: #888;
}

.color-gray3 {
  color: #777;
}

.color-dark {
  color: #1B2021;
}

.color-primary {
  color: var(--primary);
}

.color-secondary {
  color: var(--secondary);
}

.filterPrimary {
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.filterSecondary {
  -webkit-filter: var(--filterSecondary);
          filter: var(--filterSecondary);
}

.filterWhite {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

p {
  font-size: 15px;
  color: #555;
  line-height: 1.7rem;
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none !important;
}

a:hover {
  color: var(--primary) !important;
}

a:focus {
  outline: 0;
}

del {
  text-decoration: line-through;
  color: #888;
  font-size: 80%;
}

ul {
  list-style-type: none;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

button:focus {
  border: none;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  outline: 0;
}

button:active,
button:active:focus,
button:active:hover,
button:focus,
button:hover,
button:not(:disabled):not(.disabled).active,
button:not(:disabled):not(.disabled):active {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

form .form-group {
  position: relative;
}

form .form-control {
  font-size: 14px;
}

form .form-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid var(--primary) !important;
}

form input,
form select {
  height: 55px !important;
}

form .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.progress-wrap {
  position: fixed;
  left: 20px;
  bottom: 20px;
  height: 55px;
  width: 55px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
          box-shadow: inset 0 0 0 2px rgba(51, 51, 51, 0.2);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: translateY(130%);
          transform: translateY(130%);
  z-index: 99;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap::after {
  background: url(../images/icons/top-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  color: var(--primary);
  left: 13px;
  top: 13px;
  height: 30px;
  width: 30px;
  display: block;
  -webkit-filter: var(--filterPrimary);
          filter: var(--filterPrimary);
}

.progress-wrap svg path {
  fill: #f8f8f8;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.center-vr {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.in-flex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.inFlex {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container,
.container-fluid,
.zi-5 {
  position: relative;
  z-index: 5;
}

.sec-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.text-end {
  text-align: end;
}

.overflow_hidden {
  overflow: hidden !important;
}

.bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.w-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.position-unset {
  position: unset;
}

.underline {
  text-decoration: underline !important;
}

/**********************************************
   Start Animations
**********************************************/
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
  100% {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}

@-webkit-keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

@keyframes floatingX {
  0% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(-2px);
            transform: translateX(-2px);
  }
}

/**********************************************
    Start Public Classes
**********************************************/
.section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;
}

.swiper-container .swiper-pagination {
  bottom: 0;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 25px;
}

.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  width: 20px;
  background: var(--primary);
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-button-prev {
  background-image: unset;
  width: 35px;
  height: 35px;
  border: 1px solid transparent;
  border-radius: 0px;
  background-image: unset;
  background-color: #f5f5f5;
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  opacity: .7;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-button-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--secondary);
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.swiper-container .swiper-button-next:hover,
.swiper-container .swiper-button-prev:hover {
  background-color: var(--primary);
  opacity: 1;
}

.swiper-container .swiper-button-next:hover::before,
.swiper-container .swiper-button-prev:hover::before {
  color: #fff;
}

.swiper-container .swiper-button-next,
.swiper-container .swiper-container-rtl .swiper-button-prev {
  right: 5%;
  left: auto;
}

.swiper-container .swiper-button-next::before,
.swiper-container .swiper-container-rtl .swiper-button-prev::before {
  content: '\f0da';
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-container-rtl .swiper-button-next {
  left: 5%;
  right: auto;
}

.swiper-container .swiper-button-prev::before,
.swiper-container .swiper-container-rtl .swiper-button-next::before {
  content: '\f0d9';
}

.butn {
  position: relative;
  padding: .7rem 1.5rem;
  border-radius: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid transparent;
}

.butn i {
  -webkit-margin-end: 7px;
          margin-inline-end: 7px;
}

.butn.sm_butn {
  padding: 0;
  width: 50px;
  height: 50px;
}

.butn.secondary_butn {
  background-color: var(--secondary);
  color: #fff;
}

.butn.secondary_border_butn {
  border: 1px solid var(--secondary);
  color: var(--secondary);
  background-color: transparent;
}

.butn.white_border_butn {
  background-color: #fff;
  border: 1px solid #D6D3D3;
}

.butn.white_butn {
  color: var(--primary);
  background-color: #fff;
}

.butn.primary_butn {
  background-color: var(--primary);
  color: #fff;
}

.butn:hover {
  background-color: #00373f;
  border: 1px solid #00373f;
  color: #fff !important;
}

.butn:hover i {
  animation: floatingX .5s both infinite alternate-reverse;
}

.butn:hover .icon {
  -webkit-filter: var(--filterWhite);
          filter: var(--filterWhite);
}

.icon-18 {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon-15 {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

/**********************************************
   Start Edit Navbar & Footer
**********************************************/
.navs-container .navbar .nav-link {
  margin: 0 10px;
  color: #ddd;
}

.navs-container .navbar .nav-link.active {
  font-weight: bold;
  color: #fff;
}

.navs-container .navbar .navbar-toggler {
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: rgba(221, 221, 221, 0.3);
  border: none;
  position: relative;
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon {
  -webkit-box-shadow: 0px 0px 0px grey;
          box-shadow: 0px 0px 0px grey;
  background: rgba(0, 0, 0, 0);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::before {
  top: 0px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navs-container .navbar .navbar-toggler.active .navbar-toggler-icon::after {
  top: 0px !important;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon {
  width: 25px;
  height: 2px;
  background: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after, .navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: var(--primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::after {
  top: -6px;
  right: 0px;
}

.navs-container .navbar .navbar-toggler .navbar-toggler-icon::before {
  top: 6px;
  right: 0px;
}

.footer .newsletter_inner {
  position: relative;
  padding: 70px 50px;
  margin-bottom: -100px;
}

.footer .newsletter_inner .form-group {
  position: relative;
}

.footer .newsletter_inner .form-group .primary_butn {
  position: absolute;
  left: 5px;
  top: 5px;
}

.footer .newsletter_inner::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.32);
}

.footer .footer_inner {
  background-color: #1F1F21;
  padding: 150px 0 0 0;
}

.footer .footer_inner .content {
  margin-bottom: 30px;
}

.footer .footer_inner .content .det {
  font-size: 13px;
  color: #ccc;
}

.footer .footer_inner .content .links a {
  color: #ccc;
  margin: 10px 0;
  display: block;
}

.footer .footer_inner .content .social_links a {
  color: #ccc;
  margin: 0 5px;
}

.footer .footer_inner .copyright_p {
  color: #ddd;
  background-color: #2A2A2C;
}

/**********************************************
    Start Edit Home Page 
**********************************************/
.header {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.header .header_inner {
  padding: 40px 0;
}

.header .header_inner .text-box .title {
  font-size: calc(1.5vw + 35px);
}

.header .header_inner .text-box .blur_butn {
  overflow: hidden;
  padding: 0.7rem 2rem;
}

.header .header_inner .text-box .blur_butn::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #fff;
  opacity: .5;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}

.header .header_inner .blog_text .title {
  position: relative;
  font-weight: bold;
}

.header .header_inner .blog_text .title::before {
  content: '';
  width: 200px;
  height: 1px;
  background-color: #fff;
  display: inline-block;
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.header .header_inner .blured_box {
  position: relative;
  padding: 15px;
}

.header .header_inner .blured_box::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  background-color: #000;
  opacity: .3;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  z-index: -1;
}

.header .header_inner .blured_box .img-box {
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.header .header_inner .blured_box .img-box .play_butn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 25px;
  color: #fff;
}

.header .header_inner .blured_box .det {
  font-size: 14px;
  line-height: 1.6;
}

.header .header_inner .blured_box .statics_box .label {
  font-weight: 300;
  font-size: 75%;
}

.header .bg {
  -o-object-position: top;
     object-position: top;
}

.header::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.32);
}

.about-sec .img-box {
  height: 450px;
  position: relative;
}

.about-sec .img-box .play_butn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #fff;
  font-weight: bold;
}

.about-sec .img-box .play_butn i {
  font-size: 25px;
}

.features-sec .feature_card {
  position: relative;
  background-color: #F9F9F9;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 25px;
  margin-bottom: 25px;
}

.features-sec .feature_card .icon-box {
  width: 135px;
  height: 135px;
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
  background-color: #E6F2F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.features-sec .feature_card .icon-box .icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}

.features-sec .feature_card .content {
  width: calc(100% - 155px);
}

.trips-sec .trip_card {
  height: 480px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.trips-sec .trip_card .custom_ul .li {
  color: #eee;
  margin: 15px 0;
}

.trips-sec .trip_card .custom_ul .li::before {
  content: '\f058';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  color: var(--primary);
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}

.trips-sec .trip_card .bg {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.trips-sec .trip_card::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(18, 56, 100, 0.3);
  z-index: 1;
  background-image: linear-gradient(135deg, #000, transparent);
  opacity: .8;
}

.trips-sec .trip_card:hover .bg {
  -webkit-transform: scale(1.1) rotate(3deg);
          transform: scale(1.1) rotate(3deg);
}

.blog-sec .blog_card {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
  position: relative;
}

.blog-sec .blog_card .sec-img {
  height: 250px;
  border-radius: 10px;
}

.blog-sec .blog_card .content {
  width: 90%;
  display: block;
  margin: auto;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 50px 0 rgba(91, 91, 91, 0.16);
          box-shadow: 0 0 50px 0 rgba(91, 91, 91, 0.16);
  position: relative;
  z-index: 1;
}

.blog-sec .blog_card .content .title {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.blog-sec .blog_card .content .date {
  font-size: 12px;
}

.blog-sec .blog_card .content .det {
  font-size: 13px;
  line-height: 1.7;
}

.blog-sec .blog_card .content .butn {
  padding: 0.5rem 1.5rem;
}

.blog-sec .blog_card:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.blog-sec .blog_card:hover .title {
  color: var(--primary);
}

.blog-sec .blog_card .mt {
  margin-top: -50px;
}

.blog-sec .blog_card .mb {
  margin-bottom: -50px;
}

.gallery-sec {
  min-height: 90vh;
}

.gallery-sec .sec-text {
  margin-bottom: -65px;
}

.gallery-sec .gallery_card {
  height: 280px;
  width: 120%;
  position: relative;
  display: block;
  margin: auto;
  overflow: hidden;
}

.gallery-sec .gallery_card .bg {
  -webkit-transition: all .3s linear;
  transition: all .3s linear;
}

.gallery-sec .gallery_card .title {
  padding: 35px;
  text-align: end;
}

.gallery-sec .gallery_card.card1 {
  margin-top: 140px;
  z-index: 3;
}

.gallery-sec .gallery_card.card2 {
  margin-top: 70px;
  z-index: 2;
}

.gallery-sec .gallery_card:hover .bg {
  -webkit-transform: scale(1.1) rotate(3deg);
          transform: scale(1.1) rotate(3deg);
}

.gallery-sec .bg {
  -o-object-position: bottom;
     object-position: bottom;
}

.contact-sec .form-group {
  margin-bottom: 1rem;
}

.contact-sec .primary_butn {
  min-width: 150px;
}
/*# sourceMappingURL=style.css.map */