@font-face {
  src: url(../Fonts/openSans/OpenSans-Light.ttf);
  font-family: 'light';
}

@font-face {
  src: url(../Fonts/openSans/OpenSans-Regular.ttf);
  font-family: 'regular';
}

@font-face {
  src: url(../Fonts/openSans/OpenSans-SemiBold.ttf);
  font-family: 'medium';
}

@font-face {
  src: url(../Fonts/openSans/OpenSans-Bold.ttf);
  font-family: 'bold';
}

* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: 'light';
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: #E74D24;
  color: #fff;
}

*::selection {
  background-color: #E74D24;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 10px;
}

*::-webkit-scrollbar-track {
  background-color: #ccc;
}

*::-webkit-scrollbar-thumb {
  background: #E74D24;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #C9141D;
}

/***************************** Global Style *****************************/
h1,
h2,
h3 {
  font-family: 'medium';
}

h4,
h5,
h6 {
  font-family: 'regular';
}

p {
  font-size: 12px;
  color: #555;
  font-family: 'regular';
}

a {
  color: #000;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

a:hover {
  color: #000;
  text-decoration: none;
}

a:focus {
  outline: 0;
}

ul {
  list-style-type: none;
  padding: 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-control:focus {
  outline: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: 1px solid #E74D24;
}

.scroll-top-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(-135deg, #FF7747, #E74D24);
  color: #fff;
  text-align: center;
  line-height: 50px;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.scroll-top-btn:hover {
  color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

/* ========= pagination ========= */
.pagination ul {
  margin: auto;
  margin-top: 30px;
}

.pagination ul li {
  display: inline-block;
}

.pagination ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 0 8px;
  display: inline-block;
}

.pagination ul li a:hover {
  background-color: #C9141D;
  color: #fff;
}

/***************************** Animations *****************************/
@-webkit-keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes clip {
  0% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
            clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}

@-webkit-keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes sideClip {
  0% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/***************************** Start Edit Navbar & Footer *****************************/
.navs-container .left-vr-nav {
  position: absolute;
  left: 0;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem 1.5rem;
  height: 100%;
}

.navs-container .left-vr-nav .logo {
  width: 85px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.navs-container .left-vr-nav .side-bar-icon {
  background-color: transparent;
  border: 1px solid transparent;
  display: block;
  margin: 50px auto;
}

.navs-container .left-vr-nav .side-bar-icon img {
  width: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.navs-container .left-vr-nav .social-links {
  position: relative;
  bottom: 20px;
  left: 0;
  text-align: center;
  width: 100%;
}

.navs-container .left-vr-nav .social-links a {
  display: block;
  text-align: center;
  color: #555;
  margin: 10px 0px;
}

.navs-container .left-vr-nav .social-links a:hover {
  color: #E74D24;
}

.navs-container .side-bar {
  position: fixed;
  top: 0;
  left: -100%;
  padding: 30px;
  height: 100vh;
  background: #f9f9f9;
  z-index: 99;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-box-shadow: 0px 0px 20px rgba(196, 195, 195, 0.5);
          box-shadow: 0px 0px 20px rgba(196, 195, 195, 0.5);
  width: 100%;
}

.navs-container .side-bar .content .logo {
  width: 130px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.navs-container .side-bar .content .links-wrapper {
  text-align: center;
  padding-top: 20px;
}

.navs-container .side-bar .content .links-wrapper .nav-link {
  color: #777;
  font-family: 'regular';
  font-size: 21px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navs-container .side-bar .content .links-wrapper .nav-link.active {
  color: #E74D24;
  font-family: 'bold';
}

.navs-container .side-bar .content .social-links {
  width: 100%;
  text-align: center;
}

.navs-container .side-bar .content .social-links a {
  color: #777;
  margin: 0px 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #9993;
  margin: 15px 5px;
  display: inline-block;
}

.navs-container .side-bar .content .social-links a:hover {
  color: #E74D24;
  border-color: #E74D24;
}

.navs-container .side-bar .side-bar-close {
  position: absolute;
  top: 80px;
  right: 60px;
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
  -webkit-transition: all .3s ease-in;
  transition: all .3s ease-in;
}

.navs-container .side-bar .side-bar-close:hover {
  color: #E74D24;
}

.navs-container .side-bar.active {
  left: 0;
  -webkit-animation: sideClip 1s ease-in-out;
          animation: sideClip 1s ease-in-out;
}

footer {
  padding-top: 70px;
  background-color: #f7f7f7;
}

footer .content {
  margin-bottom: 30px;
}

footer .content .logo {
  width: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 25px;
}

footer .content p {
  font-size: 15px;
  line-height: 1.7rem;
}

footer .content .social-links a {
  border: 1px solid #4F5C60;
  color: #4F5C60;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  margin: 0px 2px;
  text-align: center;
  font-size: 13px;
}

footer .content .social-links a:hover {
  background-color: #E74D24;
  color: #fff;
  border: 1px solid #E74D24;
}

footer .content h5 {
  color: #4F5C60;
  margin-bottom: 1.5rem;
}

footer .content .links a {
  display: block;
  color: #555;
  margin: 15px 0px;
}

footer .content .links a:hover {
  color: #E74D24;
}

footer .copyright {
  background-color: #4F5C60;
  text-align: center;
  padding: 20px 0px;
}

footer .copyright p {
  margin-bottom: 0;
  color: #fff;
  font-size: 17px;
}

/***************************** Start Edit Home Page *****************************/
header {
  position: relative;
  overflow: hidden;
}

header .main-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  float: right;
  border: 1px solid #E74D24;
  color: #E74D24;
  text-align: center;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

header .main-butn img {
  width: 11px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 5px;
  transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
}

header .main-butn:hover {
  background-color: #E74D24;
  color: #fff;
}

header .main-butn:hover img {
  filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(280%) contrast(103%);
  -webkit-filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(280%) contrast(103%);
}

header .inner {
  padding: 150px 0px 0px 150px;
}

header .inner .text {
  position: relative;
  z-index: 5;
  padding-top: 130px;
}

header .inner .text h3 {
  color: #4F5C60;
  font-family: 'regular';
  font-size: 3.8rem;
  line-height: 4.8rem;
}

header .inner .text p {
  color: #878787;
  font-family: 'medium';
  font-size: 12px;
  line-height: 1.5rem;
}

header .inner .more-butn {
  text-align: center;
  position: absolute;
  bottom: 50px;
  color: #666;
}

header .inner .more-butn img {
  width: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 10px;
}

header .inner .more-butn:hover {
  color: #E74D24;
}

header .inner .card {
  border: none;
}

header .inner .card img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}

header .inner .card .text-content {
  width: 100%;
  position: absolute;
  bottom: 30px;
  text-align: center;
}

header .inner .card .text-content .link-butn {
  color: #fff;
  font-size: 18px;
}

header .inner .card .text-content .link-butn i {
  margin: 0px 5px;
}

header .inner .card .text-content .link-butn:hover {
  color: #E74D24;
  font-weight: bold;
}

header .inner .small-card {
  position: relative;
}

header .inner .small-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: #202020;
  opacity: .5;
}

header .inner .small-card img {
  width: 100%;
  height: 200px;
  background-size: cover;
}

header .inner .small-card .text-content {
  position: absolute;
  padding: 40px 25px;
  z-index: 5;
  top: 0px;
  height: 100%;
  width: 100%;
  left: 0;
  color: #fff;
}

header .inner .small-card .text-content h5,
header .inner .small-card .text-content h6 {
  font-family: 'regular';
}

header .inner .small-card .text-content a {
  position: absolute;
  bottom: 25px;
  color: #fff;
}

header .inner .small-card .text-content a i {
  margin: 0px 5px;
}

header .inner .small-card .text-content a:hover {
  color: #FF7747;
}

header .header-l {
  position: absolute;
  left: -100px;
  top: -90px;
  width: 50%;
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
          clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

header .header-l.animated {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}

header .arrow,
header .arrow:before {
  position: absolute;
  left: 50%;
}

header .arrow {
  width: 40px;
  height: 40px;
  top: 50%;
  margin: -20px 0 0 -20px;
  border-left: none;
  border-top: none;
  border-right: 2px #000 solid;
  border-bottom: 2px #000 solid;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: arrow;
          animation-name: arrow;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

header .arrow:before {
  content: "";
  width: 20px;
  height: 20px;
  top: 50%;
  margin: -10px 0 0 -10px;
  border-left: none;
  border-top: none;
  border-right: 1px #000 solid;
  border-bottom: 1px #000 solid;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: arrow;
          animation-name: arrow;
}

@-webkit-keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}

@keyframes arrow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(10px, 10px);
            transform: translate(10px, 10px);
  }
}

.inner_header {
  background-color: #f5f5f5;
}

.inner_header .package-carousel {
  direction: ltr;
}

.inner_header .package-carousel.owl-theme .owl-dots {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 180px;
}

.inner_header .package-carousel.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  position: relative;
  background: #ccc;
}

.inner_header .package-carousel.owl-theme .owl-dots .owl-dot span::after {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: block;
  opacity: 0;
  position: absolute;
  top: -4px;
  left: -4px;
}

.inner_header .package-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.inner_header .package-carousel.owl-theme .owl-dots .owl-dot.active span::after {
  opacity: 1;
}

.inner_header .package-carousel .card {
  position: relative;
  height: 500px;
}

.inner_header .package-carousel .card::after {
  content: '';
  background-color: #171515;
  opacity: .4;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.inner_header .package-carousel .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.inner_header .package-carousel .card .text-content {
  padding-top: 0;
  text-align: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 8;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.inner_header .package-carousel .card .text-content h4 {
  color: #fff;
  font-family: 'bold';
}

.inner_header .package-carousel .card .text-content p {
  font-size: 18px;
  color: #eee;
}

.best-offers {
  overflow: hidden;
}

.best-offers .inner {
  padding-left: 200px;
}

.best-offers .inner .heading h3 {
  color: #4F5C60;
  line-height: 3.5rem;
  font-size: 3rem;
  font-family: 'regular';
}

.best-offers .inner .heading p {
  color: #4F5C60;
  opacity: .8;
  line-height: 1.6rem;
  font-size: 15px;
}

.best-offers .inner .offers-carousel.owl-theme .owl-nav {
  display: inline-block;
  position: absolute;
  top: -100px;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.best-offers .inner .offers-carousel.owl-theme .owl-nav button {
  width: 60px;
  height: 35px;
  background-color: #f5cbc0;
  color: #E74D24;
}

.best-offers .inner .offers-carousel.owl-theme .owl-nav button:hover {
  background-color: #E74D24;
  color: #fff;
}

.best-offers .inner .offers-carousel .card {
  margin-bottom: 35px;
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.best-offers .inner .offers-carousel .card .image-content {
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -ms-border-radius: 10px 10px 0px 0px;
  -o-border-radius: 10px 10px 0px 0px;
}

.best-offers .inner .offers-carousel .card .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.best-offers .inner .offers-carousel .card .card-body {
  transition: all .5s ease-in;
  -webkit-transition: all .5s ease-in;
  -moz-transition: all .5s ease-in;
  -ms-transition: all .5s ease-in;
  -o-transition: all .5s ease-in;
}

.best-offers .inner .offers-carousel .card .card-body .date {
  color: #989696;
  float: right;
  font-size: 11px;
}

.best-offers .inner .offers-carousel .card .card-body .numb {
  color: #4F5C60;
}

.best-offers .inner .offers-carousel .card .card-body .details {
  line-height: 1.7rem;
  font-size: 18px;
  color: #333;
  margin-bottom: 1.5rem;
}

.best-offers .inner .offers-carousel .card .card-body .book-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #E74D24;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.best-offers .inner .offers-carousel .card .card-body .book-btn img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin: 0px 5px;
}

.best-offers .inner .offers-carousel .card:hover {
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.best-offers .inner .offers-carousel .card:hover .image-content img {
  -webkit-transform: scale(1.2) rotate(-5deg);
          transform: scale(1.2) rotate(-5deg);
}

.best-offers .inner .offers-carousel .card:hover .card-body {
  opacity: 1;
}

.goals {
  position: relative;
  overflow: hidden;
}

.goals::after {
  content: '';
  background-color: #f6f6f6;
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 72%;
  z-index: -1;
  display: block;
}

.goals .inner {
  padding-left: 200px;
}

.goals .inner .text-content {
  padding-right: 40px;
}

.goals .inner .text-content .heading {
  margin-bottom: 2rem;
}

.goals .inner .text-content .heading h3 {
  color: #4F5C60;
  line-height: 3.5rem;
  font-size: 3rem;
  font-family: 'regular';
}

.goals .inner .text-content p {
  font-size: 15px;
  line-height: 1.8rem;
}

.goals .inner .text-content .more-butn {
  width: 150px;
  height: 40px;
  line-height: 40px;
  background-color: #ccc;
  color: #000;
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 12px;
  margin-top: 40px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.goals .inner .text-content .more-butn img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin: 0px 5px;
  transition: all .3s ease-in;
  filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(102%) contrast(103%);
  -webkit-filter: invert(92%) sepia(60%) saturate(6%) hue-rotate(120deg) brightness(102%) contrast(103%);
  -webkit-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
}

.goals .inner .text-content .more-butn:hover {
  background-color: #E74D24;
  color: #fff;
}

.goals .inner .text-content .more-butn:hover img {
  filter: invert(6%) sepia(23%) saturate(8%) hue-rotate(319deg) brightness(106%) contrast(86%);
  -webkit-filter: invert(6%) sepia(23%) saturate(8%) hue-rotate(319deg) brightness(106%) contrast(86%);
}

.goals .inner .image-content {
  width: 100%;
  margin: 15px 0px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  opacity: 0;
  -webkit-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
  overflow: hidden;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.goals .inner .image-content.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
}

.goals .inner .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.goals .pattern-r {
  position: absolute;
  right: -300px;
  top: -100px;
  width: 70%;
  z-index: 0;
  pointer-events: none;
  -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
          clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.goals .pattern-r.animated {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}

.gallery-sec {
  background: url(../images/gallery-sec.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.gallery-sec::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../images/gallery-linear.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery-sec .items {
  position: relative;
  margin-bottom: 50px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-sec .items.animated {
  -webkit-animation: clip 1s ease-in-out;
          animation: clip 1s ease-in-out;
}

.gallery-sec .items:after, .gallery-sec .items::before {
  position: absolute;
  content: attr(data-text);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #E74D24;
  border: 4px solid #fff;
  border-radius: 10px;
  color: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
}

.gallery-sec .items::before {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.gallery-sec .items:hover::after, .gallery-sec .items:hover::before {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 0.4;
}

.gallery-sec .items:hover .gallery-img {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
}

.gallery-sec .inner {
  position: relative;
  z-index: 9;
}

.gallery-sec .inner .heading {
  margin-bottom: 50px;
}

.gallery-sec .inner .heading h3 {
  color: #333;
  line-height: 3.5rem;
  font-size: 2.5rem;
  font-family: 'regular';
}

.gallery-sec .inner .heading p {
  color: #4F5C60;
  opacity: .8;
  line-height: 1.6rem;
  font-size: 15px;
}

.gallery-sec .inner .gallery-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: all 5s linear;
  transition: all 5s linear;
}

.gallery-sec .inner .more-butn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  background-color: #f5cbc0;
  text-align: center;
  display: block;
  color: #E74D24;
  font-weight: bold;
  margin: auto;
  font-size: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.gallery-sec .inner .more-butn .icon {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  margin: 0px 5px;
  -webkit-filter: invert(47%) sepia(45%) saturate(6984%) hue-rotate(349deg) brightness(95%) contrast(91%);
          filter: invert(47%) sepia(45%) saturate(6984%) hue-rotate(349deg) brightness(95%) contrast(91%);
}

.newsletter-sec {
  background: url(../images/newsletter.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
  position: relative;
}

.newsletter-sec::after {
  content: '';
  background-color: #E74D24;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .6;
}

.newsletter-sec .inner {
  position: relative;
  z-index: 9;
}

.newsletter-sec .inner .text {
  color: #fff;
}

.newsletter-sec .inner .text h5 {
  font-family: 'bold';
}

.newsletter-sec .inner .text p {
  color: #eee;
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.7rem;
  font-size: 15px;
}

.newsletter-sec .inner .form-group {
  position: relative;
  margin-top: 25px;
  margin-bottom: 0;
}

.newsletter-sec .inner .form-group .form-control {
  height: 55px;
  padding-right: 50px;
}

.newsletter-sec .inner .form-group .submit-butn {
  position: absolute;
  right: 9px;
  top: 13px;
  color: #E74D24;
  background-color: transparent;
  border: 1px solid transparent;
}

.newsletter-sec .pattern-l {
  position: absolute;
  width: 60%;
  top: -250px;
  left: 0;
  -webkit-clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
          clip-path: polygon(100% 0, 100% 0, 0 0, 0 0);
  -webkit-transition: all 2s ease-in-out;
  transition: all 2s ease-in-out;
}

.newsletter-sec .pattern-l.animated {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
}

.servicrs-sec .inner {
  padding-left: 200px;
}

.servicrs-sec .inner .text-content {
  padding-right: 40px;
}

.servicrs-sec .inner .text-content .heading h3 {
  color: #4F5C60;
  line-height: 3.5rem;
  font-size: 2.5rem;
  font-family: 'regular';
}

.servicrs-sec .inner .text-content .heading p {
  color: #4F5C60;
  opacity: .8;
  line-height: 1.6rem;
  font-size: 15px;
}

.servicrs-sec .inner .text-content .item {
  margin: 10px;
  padding: 15px;
  border: 1px solid #9992;
  border-radius: 10px;
  overflow: hidden;
}

.servicrs-sec .inner .text-content .item .icon-container {
  background-color: #f5cbc0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.servicrs-sec .inner .text-content .item .icon-container img {
  width: 35px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

.servicrs-sec .inner .text-content .item p {
  font-size: 13px;
  line-height: 1.5rem;
  margin-top: .8rem;
  margin-bottom: 30px;
}

.servicrs-sec .inner .text-content .item:hover .icon-container {
  -webkit-box-shadow: 50px 50px 0 200px #f5cbc0;
          box-shadow: 50px 50px 0 200px #f5cbc0;
}

.servicrs-sec .inner .image-content {
  width: 100%;
  margin: 15px 0px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  opacity: 0;
  -webkit-transition: all 1.2s ease-in-out;
  transition: all 1.2s ease-in-out;
  overflow: hidden;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.servicrs-sec .inner .image-content.animated {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
}

.servicrs-sec .inner .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************** Start Edit Contact Page *****************************/
.page-heading {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  padding: 15px 0px;
  position: relative;
  border-top-left-radius: 30px;
  overflow: hidden;
}

.page-heading::after {
  content: '';
  background-color: #171515;
  opacity: .4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.page-heading .inner {
  position: relative;
  z-index: 9;
}

.page-heading .inner .breadcrumb {
  background-color: transparent;
}

.page-heading .inner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #ddd;
}

.page-heading .inner .breadcrumb .breadcrumb-item a {
  color: #fff;
}

.page-heading .inner .breadcrumb .breadcrumb-item.active {
  color: #E74D24;
}

.page-heading .inner .text {
  padding: 35px 0px 45px 0px;
}

.page-heading .inner .text h4 {
  font-size: 35px;
  color: #fff;
  font-weight: 200;
  text-transform: uppercase;
}

.page-heading .inner .text p {
  color: #eee;
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
}

section {
  padding: 70px 0px;
}

section .sec-heading {
  text-align: center;
  margin-bottom: 50px;
}

section .sec-heading h4 {
  font-weight: 400;
  color: #E74D24;
  text-transform: uppercase;
}

section .sec-heading p {
  font-size: 15px;
}

.branches-sec .text {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  position: relative;
  padding: 90px 45px;
}

.branches-sec .text::after {
  content: '';
  background-color: #171515;
  opacity: .5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.branches-sec .text .inner {
  position: relative;
  z-index: 9;
}

.branches-sec .text .inner h5 {
  color: #fff;
  position: relative;
  margin-bottom: 2.3rem;
}

.branches-sec .text .inner h5::after {
  content: '';
  background-color: #E74D24;
  width: 100px;
  height: 2px;
  display: block;
  position: relative;
  top: 9px;
}

.branches-sec .text .inner p {
  font-size: 15px;
  color: #eee;
  margin-bottom: .8rem;
}

.branches-sec .map {
  height: 100%;
}

.branches-sec .map iframe {
  height: 100%;
}

.contact-sec {
  background-color: #EEEFF0;
  position: relative;
  overflow: hidden;
}

.contact-sec .form-container .form-group {
  margin-bottom: 1.5rem;
}

.contact-sec .form-container .form-group .form-control {
  height: 65px;
  background-color: #fff;
  border: 1px solid #fff;
  font-size: 15px;
}

.contact-sec .form-container .form-group .form-control:focus {
  border: 1px solid #E74D24;
}

.contact-sec .form-container .form-group .form-control::-webkit-input-placeholder {
  color: #AFAFAF;
}

.contact-sec .form-container .form-group .form-control:-ms-input-placeholder {
  color: #AFAFAF;
}

.contact-sec .form-container .form-group .form-control::-ms-input-placeholder {
  color: #AFAFAF;
}

.contact-sec .form-container .form-group .form-control::placeholder {
  color: #AFAFAF;
}

.contact-sec .form-container .form-group textarea {
  height: 250px !important;
  resize: none;
}

.contact-sec .form-container .main-butn {
  background-color: #E74D24;
  border: 1px solid #FF7747;
  color: #fff;
  width: 200px;
  height: 50px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.contact-sec .form-container .main-butn img {
  width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 9px;
}

.contact-sec .contact-l {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/***************************** Start Edit About Page *****************************/
.about-pg {
  padding: 0;
}

.about-pg .about-pg-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-pg .text {
  padding: 50px 0px;
  width: 85%;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.about-pg .text h5 {
  position: relative;
  margin-bottom: 1.5rem;
}

.about-pg .text h5::after {
  content: '';
  background-color: #E74D24;
  width: 50px;
  height: 2px;
  display: block;
  position: relative;
  top: 9px;
}

.about-pg .text p {
  font-size: 15px;
  line-height: 2rem;
  color: #4F5C60;
}

/***************************** Start Edit Packages Page *****************************/
.packages-pg .card {
  margin-bottom: 35px;
  border: 1px solid #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -ms-border-radius: 10px 10px 0px 0px;
  -o-border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}

.packages-pg .card .image-content {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.packages-pg .card .image-content img {
  width: 100%;
  height: 100%;
  border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -ms-border-radius: 10px 10px 0px 0px;
  -o-border-radius: 10px 10px 0px 0px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.packages-pg .card .image-content .badge {
  width: 150px;
  height: 45px;
  line-height: 37px;
  text-transform: uppercase;
  color: #fff;
  background-color: #E74D24;
  font-weight: bold;
  font-size: 17px;
  position: absolute;
  top: 0;
  left: -10px;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.packages-pg .card .image-content .badge::after {
  content: '';
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: #C9141D;
  display: block;
  width: 15px;
  height: 15px;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 45px;
}

.packages-pg .card .card-body .date {
  color: #989696;
  float: right;
  font-size: 11px;
}

.packages-pg .card .card-body .numb {
  color: #4F5C60;
}

.packages-pg .card .card-body .details {
  line-height: 1.5rem;
  font-size: 18px;
  color: #4F5C60;
  margin-bottom: 1.5rem;
}

.packages-pg .card .card-body .recent-price {
  color: #E74D24;
  font-size: 18px;
  margin-bottom: .5rem;
}

.packages-pg .card .card-body .last-price {
  color: #6E6E6E;
  font-size: 14px;
  text-decoration: line-through;
  margin-bottom: 0;
  position: absolute;
}

.packages-pg .card .card-body .book-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-color: #E74D24;
  text-align: center;
  display: block;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.packages-pg .card .card-body .book-btn img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 5px;
}

.packages-pg .card:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.packages-pg .card:hover .image-content img {
  -webkit-transform: rotate(-7deg) scale(1.15);
          transform: rotate(-7deg) scale(1.15);
}

/***************************** Start Edit Package DetailsPage *****************************/
.package-details {
  padding: 0 0 70px 0;
}

.package-details .package-inner {
  padding-top: 20px;
}

.package-details .package-inner nav {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 5;
}

.package-details .package-inner nav .nav {
  margin-bottom: 50px;
}

.package-details .package-inner nav .nav .nav-link {
  font-size: 17px;
  font-weight: 600;
  padding: 28px 25px 28px;
  font-family: 'bold';
  color: #9a9a9a;
}

.package-details .package-inner nav .nav .nav-link:hover {
  border-color: transparent;
}

.package-details .package-inner nav .nav .nav-link.active {
  color: #FF7747;
  background-color: #fff;
  border-color: transparent;
  border-bottom: 1px solid #FF7747;
}

.package-details .package-inner .tab-wrapper {
  border-bottom: 1px solid #eee;
  margin-bottom: 50px;
  padding-bottom: 30px;
}

.package-details .package-inner .tab-wrapper:last-child {
  border-bottom: 1px solid transparent;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.package-details .package-inner .tab-wrapper h4 {
  color: #4F5C60;
  font-family: 'bold';
  margin-bottom: 2rem;
}

.package-details .package-inner .tab-wrapper h4 i {
  font-size: 1.2rem;
  margin: 0px 5px;
}

.package-details .package-inner .tab-wrapper .details h3 {
  font-family: 'bold';
  margin-bottom: 2.5rem;
  color: #4F5C60;
  font-size: 1.6rem;
}

.package-details .package-inner .tab-wrapper .details .item {
  margin-bottom: 30px;
}

.package-details .package-inner .tab-wrapper .details .item span {
  color: #666;
  font-family: 'medium';
  font-size: 17px;
}

.package-details .package-inner .tab-wrapper .details .item span i {
  margin-right: 10px;
  color: #E74D24;
}

.package-details .package-inner .tab-wrapper .details .desc {
  padding: 20px 5px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  line-height: 1.7rem;
}

.package-details .package-inner .tab-wrapper .details .includes {
  padding: 1rem 0rem;
  margin: 1.5rem 0rem;
  border-bottom: 1px solid #eee;
}

.package-details .package-inner .tab-wrapper .details .includes h6 {
  color: #4F5C60;
  font-family: 'bold';
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.package-details .package-inner .tab-wrapper .details .includes li {
  position: relative;
  padding-left: 30px;
  font-family: 'medium';
  font-size: 15px;
  margin-bottom: .5rem;
  color: #666;
}

.package-details .package-inner .tab-wrapper .details .includes li::before {
  content: '\f00c';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 0px;
  opacity: 1;
  color: #E74D24;
}

.package-details .package-inner .tab-wrapper .details .excludes {
  padding: 1rem 0rem 0 0;
  margin: 1.5rem 0rem 0rem 0rem;
}

.package-details .package-inner .tab-wrapper .details .excludes h6 {
  color: #4F5C60;
  font-family: 'bold';
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.package-details .package-inner .tab-wrapper .details .excludes li {
  position: relative;
  padding-left: 30px;
  font-family: 'medium';
  font-size: 15px;
  margin-bottom: .5rem;
  color: #666;
}

.package-details .package-inner .tab-wrapper .details .excludes li::before {
  content: '\f00d';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 0px;
  opacity: 1;
  color: #E74D24;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel {
  direction: ltr;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel.owl-theme .owl-dots {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 50px;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  position: relative;
  background: #ccc;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel.owl-theme .owl-dots .owl-dot span::after {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: block;
  opacity: 0;
  position: absolute;
  top: -4px;
  left: -4px;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel.owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel.owl-theme .owl-dots .owl-dot.active span::after {
  opacity: 1;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel .item {
  border-radius: 15px;
  height: 400px;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel .item::after {
  border-radius: 15px;
  content: '';
  background-color: #E74D24;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  pointer-events: none;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel .item img {
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.package-details .package-inner .tab-wrapper .photos .gallery-carousel .item:hover::after {
  opacity: .5;
}

.package-details .package-inner .tab-wrapper .itinerary .card {
  margin-bottom: 30px;
  border-radius: 15px;
  border: none;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
}

.package-details .package-inner .tab-wrapper .itinerary .card .card-header {
  padding: 1.2rem 1.25rem;
  background-color: #4F5C60;
  border-radius: 15px 15px 0px 0px;
}

.package-details .package-inner .tab-wrapper .itinerary .card .card-header span {
  color: #eee;
  font-family: 'medium';
}

.package-details .package-inner .tab-wrapper .itinerary .card .card-header h5 {
  margin-bottom: 0;
  color: #fff;
}

.package-details .package-inner .tab-wrapper .itinerary .card .card-body p {
  font-size: 15px;
  line-height: 1.7rem;
}

.package-details .package-inner .tab-wrapper .faq .card {
  margin-bottom: 30px;
  border-radius: 15px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  border: 1px solid transparent;
}

.package-details .package-inner .tab-wrapper .faq .card .card-header {
  padding: 0.75rem 0.5rem;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.package-details .package-inner .tab-wrapper .faq .card .card-header .btn-link {
  color: #E74D24;
  font-weight: bold;
  padding-left: 60px;
  text-decoration: none !important;
}

.package-details .package-inner .tab-wrapper .faq .card .card-header .btn-link:hover {
  color: #C9141D;
}

.package-details .package-inner .tab-wrapper .faq .card .card-header .btn-link::before {
  content: '\f067';
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 20px;
  top: 12px;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  color: #4F5C60;
  background-color: #F9FAFA;
  display: block;
}

.package-details .package-inner .tab-wrapper .faq .card .card-header .btn-link.active::before {
  content: '\f068';
  color: #F9FAFA;
  background-color: #4F5C60;
}

.package-details .package-inner .tab-wrapper .faq .card .card-body {
  padding: 0rem 1.25rem;
}

.package-details .package-inner .tab-wrapper .faq .card .card-body p {
  line-height: 1.7rem;
  font-size: 13px;
}

.package-details .side-column {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.package-details .side-column.scrolled {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.package-details .side-column .package-form {
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 30px;
  padding: 25px 15px;
  -webkit-box-shadow: 0px 3px 15px 0px #eee;
          box-shadow: 0px 3px 15px 0px #eee;
  margin-top: -100px;
  z-index: 8;
  position: relative;
}

.package-details .side-column .package-form .num-views {
  color: #4F5C60;
  font-size: 12px;
}

.package-details .side-column .package-form .text {
  padding: 20px 0px;
}

.package-details .side-column .package-form .text h6 {
  position: relative;
  color: #4F5C60;
  font-family: 'medium';
}

.package-details .side-column .package-form .text h6::after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: #E74D24;
  display: block;
  margin: auto;
  position: relative;
  top: 10px;
}

.package-details .side-column .package-form .text .price {
  margin-top: 2rem;
  font-size: 25px;
  color: #E74D24;
}

.package-details .side-column .package-form .text .price b {
  font-family: 'bold';
  font-size: 30px;
}

.package-details .side-column .package-form .form-group {
  margin: 0px 15px;
  position: relative;
  margin-bottom: 1.5rem;
}

.package-details .side-column .package-form .form-group .form-control {
  height: 55px;
  padding-left: 35px;
  font-size: 13px;
}

.package-details .side-column .package-form .form-group .icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  pointer-events: none;
  top: 18px;
  left: 10px;
}

.package-details .side-column .package-form .button-wrapper {
  border-top: 1px solid #eee;
  padding: 25px 10px 0px 10px;
}

.package-details .side-column .package-form .button-wrapper button {
  width: 100%;
  height: 60px;
  border-radius: 5px;
  background-color: #E74D24;
  border: 1px solid #E74D24;
  color: #fff;
}

.package-details .side-column .package-form .button-wrapper button img {
  width: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0px 3px;
}

.package-details .side-column .features-card {
  margin-bottom: 30px;
  background-color: #4F5C60;
  border-radius: 20px;
  padding: 3.5rem 2rem;
  color: #fff;
}

.package-details .side-column .features-card h5 {
  margin-bottom: 1.5rem;
}

.package-details .side-column .features-card p {
  color: #eee;
  font-size: 15px;
}

.package-details .side-column .features-card p:last-child {
  margin-bottom: 0;
}

.package-details .side-column .features-card p i {
  margin: 0px 5px;
}

.package-details .side-column .contact-card {
  border-radius: 20px;
  background: url(../images/contact-card.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.package-details .side-column .contact-card::after {
  border-radius: 20px;
  content: '';
  background-color: #E74D24;
  opacity: .5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.package-details .side-column .contact-card .content {
  padding: 4rem 2.5rem;
  position: relative;
  z-index: 8;
  font-size: 20px;
  color: #fff;
}

.package-details .side-column .contact-card .content p {
  margin-top: 1rem;
  color: #f6f6f6;
  line-height: 1.6rem;
  margin-bottom: .5rem;
}

.package-details .side-column .contact-card .content a {
  font-family: 'bold';
  color: #fff;
  font-style: italic;
}

.package-details-pg h4 {
  color: #4F5C60;
  font-family: 'bold';
  margin-bottom: 2rem;
}
/*# sourceMappingURL=style.css.map */