
body {
  font-family: "Barlow", sans-serif;
  color: #444444;
}
p{
   font-family: "Barlow", sans-serif;
   line-height: 30px;
   font-size: 16px;
}
a {
    color:#fff;
    text-decoration: none;
}

nav.breadcrumbs a {
    color: #f0b565;
}

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


h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: "Barlow", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/


.padding-top50 {
    padding-top: 50px;
}



/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f89a54;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #f06f54;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fffbff;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
}

#header.header-scrolled {
  
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px 10px 22px;
    font-size: 16px;
    color: #1e1c1c;
    white-space: nowrap;
    transition: 0.3s;
    font-family: "Barlow", sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover>a {
    color:#ab7429;
}

.navbar .getstarted, .navbar .getstarted:focus {
    background: #f2994a;
    padding: 8px 20px;
    margin-left: 30px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #000000;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color:#ab7429;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
    display: block;
    color: #000;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #0b2341;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ed502e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ed502e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 540px;
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: contain;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {

}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: -10px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #000;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}




#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: #ab7429;
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
    background: #ed502e;
    color: #fff;
}

#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
    opacity: 1;
    background:#ab7429;
}

#hero .btn-get-started {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    font-size: 13px;
    
    display: inline-block;
    padding: 14px 19px;
    border-radius: 4px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    animation-delay: 0.8s;
    background: #30345f;
    margin-top: 7px;
}

#hero .btn-get-started:hover {
  background: #ef6445;
}
@media (max-width: 992px) {
   #hero {
        height: 85vh;
        margin-bottom: -462px;
    }
}

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
    opacity: initial;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/



.section-title {
  padding-bottom: 0px;
}

.section-title h2 {
    font-size: 17px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 2px;
    display: inline-block;
    background: #ed502e;
    margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f2f57;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-size: 48px;
    color: #4864AD;
    font-weight: 700;
}
.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ed502e;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: #ffff;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid #323663;
    background: #323663;
}

.about .content .btn-learn-more:hover {
    background: #ed502e;
    color: #fff;
    text-decoration: none;
    border: 2px solid #ed502e;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  width: 100%;
}

.counts .count-box i {
  font-size: 30px;
  color: #ed502e;
}

.counts .count-box span {
    font-size: 42px;
    line-height: 24px;
    display: block;
    font-weight: 700;
    color: #f35d22;
    margin-top: 20px;
}

.counts .count-box p {
    padding: 25px 0 0 0;
    margin: 0;
    font-size: 18px;
    color: #000;
}
.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.why-us .accordion-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 23px;
    line-height: 24px;
    font-weight: 700;
    padding-right: 30px;
    outline: none;
    color: #0b2341;
    cursor: pointer;
}

.why-us .accordion-list span {
    color: #ffa441;
    font-weight: 600;
    font-size: 23px;
    padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 40px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
    color: #ffa441;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #ed502e;
  border-color: #ed502e;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #ed502e;
}

.services .icon-box:hover .icon::before {
  background: #f1775d;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
    margin-top: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 27px 16px 1px 15px;
    margin: 0px 5px;
    text-align: center;
    min-height: 200px;
    box-shadow: 0px 0px 20px 0px rgb(11 35 65 / 10%);
    position: relative;
    background: #FFFFFF1A;
    border-radius: 8px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color:#282727;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  font-size: 20px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    position: relative;
    right: 95px;
    padding-top: 6px;
}


.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}


.testimonials .testimonial-item p {
    margin: 41px 10px 15px 13px;
    text-align: left;
}


.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #b0b0b0;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #a77319;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 40px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ed502e;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ed502e;
  border: 2px solid #ed502e;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

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

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #ed502e;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(0deg, rgba(11, 35, 65, 0.9) 0%, rgba(11, 35, 65, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #ed502e;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #ed502e;
}

.pricing .featured .get-started-btn {
  background: #ed502e;
  color: #fff;
  border-color: #ed502e;
}

.pricing .featured .get-started-btn:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Poppins", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ed502e;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #ed502e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ef6445;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/


@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  content: '/';
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #000000;
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
  padding: 40px 0 0px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 15px;
}

#footer .footer-top .footer-info h3 {
    font-size: 26px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 0;
}

#footer .footer-top .social-links a {
    font-size: 26px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 6px 0;
    margin-right: 7px;
    border-radius: 4px;
    text-align: center;
    width: 39px;
    height: 39px;
    transition: 0.3s;
    background: #a77319;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #ed502e;
  text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 12px;
    color: #b9b9b9;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    padding-left: 0px;
}

#footer .footer-top .footer-links ul a:hover {
    color: #f89a54;
}

#footer .footer-top .footer-newsletter form {
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
    border: 0;
    padding: 10px;
    width: 100%;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
    font-size: 16px;
    padding: 9px 20px 9px 20px;
    background: #a77319;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #a77319;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ef6445;
}

#footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -16px 0 10px 0;
  }
}

.section-titles h2 {
    font-size: 40px;
    font-weight: 600;
    padding-top: 43px;
}

.blurb {
    border-radius: 30px 30px 30px 30px;
    padding: 20px;
    text-align: center;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.img-border{
  border-radius: 10px;
}

.blurb h4 {
    color: #fff;
    margin-top: 10px;
}
.blurb p {
    color: #fff;
    margin-top: 10px;
}

.padding-top30{
  padding-top: 30px;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}
.skills .progress .skill {
    color: #000;
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: capitalize;
    display: block;
    font-weight: 600;
    font-size: 16px;
}
.skills .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 10px;
}
.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #106eea;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}
#topbar {
    background: #a77319;
    font-size: 16px;
    height: 40px;
    padding: 0;
    /* transition: all 0.5s; */
    overflow: hidden;
    z-index: 9999;
    font-weight: 600;
}

#topbar .contact-info i {
    font-style: normal;
    color: #0c0b0b;
}
#topbar .contact-info i a, #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
    letter-spacing: 1px;
}

.mr-45 {
    margin-top: 150px;
}

ul.elementskit-stars {
    padding: 0;
}

ul.elementskit-stars li {
    display: contents;
    padding: 0;
    margin: 0;
}

ul.elementskit-stars li i {
    color: #e8bf00 !important;
}

a.btn-learn {
    background: #d8b079;
    color: #fff;
    border-radius: 9px;
    padding: 10px 25px 15px 25px;
}

.blog {
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
}

.blog-text {
    padding: 13px;
}


.cta {
    padding: 72px 77px;
    background-image: url(../img/bg.jpg);
}

.title-box h2.title-a {
    color: #4864AD;
}
.form-bg {
    background-color: #140f35;
    padding: 24px;
    box-shadow: rgb(0 0 0 / 24%) 0px 3px 8px;
    background: #fff;
}

.contact-box {
    padding: 8px 30px 15px 0px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.contact-box .icon-box-icon {
    width: 60px;
}
.icon-box .icon-box-icon {
    font-size: 30px;
    color: #ab7429;
    border-radius: 50%;
    padding-top: 10px;
}

.icon-box-icon span {
    border: 1px solid #ab7429;
    border-radius: 50px;
    height: 55px;
    width: 55px;
    line-height: 54px;
    border-style: dashed;
    margin-bottom: 20px;
}

.contact-box i {
    background: #d5af73;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 39px;
    border-radius: 50px;
    color: #fff;
    display: block;
}

h4.icon-title {
    color: #000;
}
.calltoact h3 {
    padding-bottom: 10px;
    font-size: 36px;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.form-f {
    margin-bottom: 12px;
}

.btn {
    background: #af7533;
    text-transform: capitalize;
    padding: 5px 6px 17px 17px !important;
    color: #fff;
    cursor: pointer;
    display: inline-blockc !important;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    line-height: 1;
    -moz-user-select: none;
    letter-spacing: 1px;
    line-height: 0;
    margin-bottom: 0;
    cursor: pointer;
    transition: color 0.4s linear;
    position: relative;
    z-index: 1;
    border: 0;
    overflow: hidden;
    margin: 0;
    display: inline-block !important;
}

.img-bor {
    border-radius: 4px;
    border: 1px solid #ccc;
}


.user-membar {
    text-align: center;
}

.user-membar h2 {
    font-size: 25px;
}

.banner-text {
    position: absolute;
    z-index: 999;
    top: 32%;
    bottom: 0;
    right: 0;
    left: 0;
}

.banner-text h1 {
   color: #323663;
   font-size: 45px; 
   font-weight: 700;
}

.banner {
    position: relative;
    text-align: center;
    padding-bottom: 12px;
}

.bg-none{
  background-image: none;
}

.th-1 img {
    width: 100%;
}


.gap {
    margin-top: 15px;
}












@media only screen and (max-width:600px){ 

  #topbar .contact-info i a, #topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
    letter-spacing: -1px;
}


.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
    padding-top: 20px;
}




.section-titles h2 {
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    color: #4864AD;
}


.section-titles h2 {
    text-align: center;
    font-size: 29px;
    font-weight: 700;
    color: #4864AD;
}


.mr-45 {
    margin-top: 24px;
    margin-bottom: 17px;
}


}

.para-gap {
    font-size: 15px;
    margin-bottom: 3px;
}



.read-more-target,
.read-more-trigger_opened {
  display: none;
}
.read-more-state:checked ~ .read-more-wrap .read-more-target,
.read-more-state:checked ~ .read-more-trigger_opened {
  display: block;
}
.read-more-state:checked ~ .read-more-trigger_closed {
  display: none;
}



.read-mores-target,
.read-mores-trigger_opened {
  display: none;
}
.read-mores-state:checked ~ .read-mores-wrap .read-mores-target,
.read-mores-state:checked ~ .read-mores-trigger_opened {
  display: block;
}
.read-mores-state:checked ~ .read-mores-trigger_closed {
  display: none;
}


.read-mored-target,
.read-mored-trigger_opened {
  display: none;
}
.read-mored-state:checked ~ .read-mored-wrap .read-mored-target,
.read-mored-state:checked ~ .read-mored-trigger_opened {
  display: block;
}
.read-mored-state:checked ~ .read-mored-trigger_closed {
  display: none;
}


.read-moref-target,
.read-moref-trigger_opened {
  display: none;
}
.read-moref-state:checked ~ .read-moref-wrap .read-moref-target,
.read-moref-state:checked ~ .read-moref-trigger_opened {
  display: block;
}
.read-moref-state:checked ~ .read-moref-trigger_closed {
  display: none;
}



.read-moreh-target,
.read-moreh-trigger_opened {
  display: none;
}
.read-moreh-state:checked ~ .read-moreh-wrap .read-moreh-target,
.read-moreh-state:checked ~ .read-moreh-trigger_opened {
  display: block;
}
.read-moreh-state:checked ~ .read-moreh-trigger_closed {
  display: none;
}


.read-morel-target,
.read-morel-trigger_opened {
  display: none;
}
.read-morel-state:checked ~ .read-morel-wrap .read-morel-target,
.read-morel-state:checked ~ .read-morel-trigger_opened {
  display: block;
}
.read-morel-state:checked ~ .read-morel-trigger_closed {
  display: none;
}



.read-moreb-target,
.read-moreb-trigger_opened {
  display: none;
}
.read-moreb-state:checked ~ .read-moreb-wrap .read-moreb-target,
.read-moreb-state:checked ~ .read-moreb-trigger_opened {
  display: block;
}
.read-moreb-state:checked ~ .read-moreb-trigger_closed {
  display: none;
}



.read-morec-target,
.read-morec-trigger_opened {
  display: none;
}
.read-morec-state:checked ~ .read-morec-wrap .read-morec-target,
.read-morec-state:checked ~ .read-morec-trigger_opened {
  display: block;
}
.read-morec-state:checked ~ .read-morec-trigger_closed {
  display: none;
}


.read-moreg-target,
.read-moreg-trigger_opened {
  display: none;
}
.read-moreg-state:checked ~ .read-moreg-wrap .read-moreg-target,
.read-moreg-state:checked ~ .read-moreg-trigger_opened {
  display: block;
}
.read-moreg-state:checked ~ .read-moreg-trigger_closed {
  display: none;
}


.read-morej-target,
.read-morej-trigger_opened {
  display: none;
}
.read-morej-state:checked ~ .read-morej-wrap .read-morej-target,
.read-morej-state:checked ~ .read-morej-trigger_opened {
  display: block;
}
.read-morej-state:checked ~ .read-morej-trigger_closed {
  display: none;
}



.btn-button {
    background: #313561;
    color: #fff;
    padding: 5px 10px 5px 10px;
    font-size: 15px;
    border-radius: 4px;
}



.box {
    background: #fafafa;
    text-align: center;
    padding-bottom: 20px;
}


.box h3 {
    font-size: 24px;
    margin-top: 12px;
    font-weight: 600;
}

.box a {
    color: #ff5500;
    font-size: 16px;
    font-weight: 500;
}

.pro {
    padding-bottom: 22px;
}

.test {
    text-align: center;
}

.test h4 {
    font-size: 25px;
}


.test p {
    font-size: 50px;
    padding-top: 9px;
}

.choose {
    background: #161921;
    padding: 20px 60px 5px 20px;
}

.mr-g {
    padding-left: 0;
}

.mr-c {
    padding-left: 0px;
    padding-right: 0px;
    color: #fffbff;
}

.choose h1 {
    font-size: 40px;
    color: #ffffff;
    padding-left: 44px;
    padding-bottom: 32px;
}



.choose-1 {
    padding-left: 112px;
    padding-bottom: 11.5px;
}


.choose img {
    float: left;
    width: 73px;
}


.slide {
    text-align: left;
    padding-top: 147px;
}

.slide p {
    font-size: 18px;
    color: #fff;
}

.test-1 {
    text-align: center;
    padding-top: 16px;
}

.test-1 h6 {
    font-size: 20px;
}

.test-1 p {
    font-size: 50px;
    font-weight: 600;
    padding-top: 15px;
}   


 .img-1 img {

}


.work img {
    padding-top: 25px;
    width: 100%;
}





.copyright {
    background: #3f454c;

}

.design p {
    color: #fff;
    padding-top: 16px;
}


.info li {
  
    font-weight: 400;
}



.swiper {
  
 }

.swiper.mtSwiper img {
    border: 1px solid;
    border-color: #c5c0c0;
}
.contact-info img {
    padding-left: 15px;
}

.contact-info a {
    color: #fff;
    padding-left: 17px;
    letter-spacing: 1px;
}


.banner h1 {
    padding-top: 32px;
    font-size: 40px;
    color: #d5af73;
}




.slide h1 {
    font-size: 50px;
    color: #ffff;
    font-weight: 900;
    text-transform: uppercase;
}

.about h6 {
    font-size: 20px;
    padding-top: 34px;
}

span.id {
    color: #f89a54;
}

.about h1 {
    font-size: 50px;
}

.about a {
    background: #ff970d;
    padding: 13px 19px 13px 19px;
    border-radius: 7px;
    letter-spacing: 1px;
}

.ser-1 {
    background: #fef6ef;
    padding-top: 45px;
    padding-bottom: 45px;
}
.service {
    padding-top: 100px;
    padding-left: 50px;
}

.service h6 {
    font-size: 20px;
    color: #f2994a;
}


.service h1 {
    font-size: 41px;
    margin-top: 23px;
    font-weight: 900;
    line-height: 55px;
}

.service p {
    line-height: 32px;
}

.use {
    color: #f2994b;
}

.call {
    background: #2e72ba;
}

.call h6 {
    font-size: 41px;
    text-align: center;
    color: #ffffff;
    padding-top: 58px;
    padding-bottom: 89px;
}

.call-1 {
    color: #f89a4a;
}


.phone {
    text-align: center;
   
    border-radius: 13px;
}

.phone p {
    font-size: 19px;
    padding-top: 16px;
    font-weight: 600;
}



.pho {
    padding-right: 20px;
    padding-left: 20px;
    color: #f6b050;
}

.phone-2 {
    padding-top: 0px;
}

.phone-2 .container {
    padding-right: 647px;
}

.explore-btn a {
    background: #a77319;
    padding: 12px 30px 12px 30px;
    border-radius: 27px;
    font-size: 20px;
}

.explore-btn a:hover {
    color: #000;
    font-weight: 500;
}

.explore-btn {
    margin-top: 32px;
}

.btn-1 a {
    background: #f89a54;
    padding: 11px 24px 11px 24px;
  
}
.expe img {
    width: 100%;
}




@media only screen and (max-width:600px){ 

 
.slide h1 {
   font-size: 17px;
        color: #ffffff;
        font-weight: 700;
        padding-top: 41px;
        margin-left: 111px;
        line-height: 1;
        margin-top: -159px;
    }

img.banner-1 {
    width: 100%;
   
}

.contact p {
    padding-right: 10px!important;
    padding-left: 1px!important;
    padding-bottom: 15px!important;
}

.mr-top {
    position: relative;
    right: 3px !important;
    z-index: 99;
}

.slide p {
    font-size: 11px;
    color: #ffffff;
    line-height: 14px;
    margin-left: 111px;
    margin-bottom: 3px;
    margin-top: -8px;
    letter-spacing: 0;
}
.tour-and h2 {
   
    font-size: 30px !important;
}

    .packages {
    padding-left: 0px !important;
}

.packages h1 {
    font-size: 28px !important;
}

.packages h6 {
    font-size: 15px !important;
}

.packages p {
    font-size: 10px;
    line-height: 2;
}

.packages img {
    padding-top: 44px;
}

.international h6 {
        font-size: 17px !important;
        padding-top: 22px;
    }

.international h1 {
    font-size: 28px !important;
    padding-bottom: 8px !important;
}

.test-1 h6 {
 font-size: 17px !important;
        padding-top: 22px;
}

.position-relative h1 {
    font-size: 28px!important;
}


.contact h1 {
   font-size: 27px!important;
}

.footer-link {
    padding-top: 0px;
}

.trusted {
    padding-top: 1px !important;
}

.testimonials {
    padding-top: 7px;
}

.user h6 {
    float: right!important;
    padding-right: 90px!important;
    padding-top: 19px!important;
    font-size: 20px!important;
}
.discount {
    margin-left: 0px!important;
}

.discount img {
    width: 100%;
}
.padding-top {
    padding-top: 0;
    padding-bottom: 0px;
}

.left-gap {
    padding-right: 12px!important;
}

.btn-1 {
    padding-top: 0px;
}

.contact-btn {
          padding-top: 0px
}

.explore-btn a {
    background: #a77319;
    padding: 6px 12px 6px 12px;
    border-radius: 17px;
    font-size: 14px;
}
.explore-btn {
    margin-top: 10px;
    padding-left: 111px;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}

#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 5px 0;
}


.about h6 {
    font-size: 20px;
    color: #f2994a;
    margin-top: 0px;
}

.service {
    padding-top: 0px;
    padding-left: 3px;
}

.test-1 p {
        font-size: 28px;
        font-weight: 600;
        margin-top: -17px;
    }

    .test-1 {
    text-align: center;
    padding-top: 1px!important;
}




#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
    background: none;
    font-size: 14px;
    line-height: 0;
    width: auto;
    height: auto;
    background: #f2994a;
    border-radius: 50px;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.5);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 500px;
    display: none;
}



#hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #4864ad;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
   margin-bottom: 463px;
}


.phone p {
    font-size: 19px;
    padding-top: 16px;
    font-weight: 600;
    margin-left: 57px;
}

.slide {
    padding-top: 140px!important;
}

.btn-1 a {
    background: #f89a54;
    padding: 4px 8px 4px 8px;
    border-radius: 6px;
}

.contact-btn a {
    background: #4dbafa;
    padding: 4px 8px 4px 8px;
    border-radius: 6px;
}

}


.btn-1 {
    float: left;
    padding-right: 10px;
}

ul.call-us {
    position: relative;
    top: -53px;
    background: #fff;
    display: initial;
    padding: 20px;
    border-radius: 10px;
}


ul.call-us li {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
}

ul.call-us a {
    color: #f89a54;
    font-size: 20px;
    font-weight: 700;
}


.about-heading h2 {
    font-size: 35px;
    font-weight: 700;
    color: #ffa32e;
}


.about-img {
    border: 1px solid;
    padding: 6px;
    border-color: #ffa441;
}



.about-heading-1 h2 {
    font-size: 32px;
    font-weight: 600;
    color: #000;
   
}


.about-heading-1 {
    padding-bottom: 24px;
}


.about-heading-1 h3 {
    font-size: 27px;
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 10px;
    color: #000;
}


.about-heading-1 ul {
   
}

.main-timeline {
    position: relative;
    margin-top: 30px;
}
.main-timeline:before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: #000;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.main-timeline .timeline {
    margin-bottom: 5px;
    position: relative;
}
.main-timeline .timeline:after {
    content: "";
    display: block;
    clear: both;
}
.main-timeline .icon1 {
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.main-timeline .icon1:before {
    background: #fff;
    border: 2px solid #232323;
    left: -3px;
}
.main-timeline .icon1:before, .main-timeline .icon1:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    transition: all 0.33s ease-out 0s;
}
.main-timeline .icon1:after {
    border: 2px solid #c6c6c6;
    left: 3px;
}
.main-timeline .date-content {
    width: 50%;
    float: left;
    margin-top: 16px;
    position: relative;
}
.main-timeline .date-content:before {
    content: "";
    width: 36.8%;
    height: 2px;
    background: #c6c6c6;
    margin: auto 0;
    position: absolute;
    top: 0;
    right: 12px;
    bottom: 0;
}
.main-timeline .date-outer {
    width: 125px;
    height: 93px;
    font-size: 16px;
    text-align: center;
    margin: auto;
    z-index: 1;
}
.main-timeline .date-outer:before {
    background: #fff;
    border: 2px solid #000;
    left: -6px;
}
.main-timeline .date-outer:before, .main-timeline .date-outer:after {
    content: "";
    width: 118px;
    height: 118px;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.33s ease-out 0s;
}
.main-timeline .date-outer:after {
    border: 2px solid #000;
    left: 6px;
}
.main-timeline .date {
    width: 100%;
    margin: auto;
    position: absolute;
    top: 46%;
    left: 0;
}
.main-timeline .timeline-content {
    width: 45%;
    padding: 20px 0 20px 50px;
    float: right;
  text-align: justify;
}
.main-timeline .timeline1 {
    margin-bottom: 5px;
    position: relative;
}
.main-timeline .timeline1:after {
    content: "";
    display: block;
    clear: both;
}
.main-timeline .icon2 {
    width: 18px;
    height: 18px;
    line-height: 18px;
    margin: auto;
    position: absolute;
    top: 0;
  left: 0;
    bottom: 0;
    right: 0;
}
.main-timeline .icon2:before {
    background: #fff;
    border: 2px solid #232323;
    left: -3px;
}
.main-timeline .icon2:before, .main-timeline .icon2:after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    transition: all 0.33s ease-out 0s;
}
.main-timeline .icon2:after {
    border: 2px solid #c6c6c6;
    left: 3px;
}
.main-timeline .timeline1:nth-child(2n) .date-content1 {
    float: right;
}
.main-timeline .date-content1 {
    width: 50%;
    float: left;
    margin-top: 10px;
    position: relative;
}
.main-timeline .date-content.date-content2 {
  margin-top: 4px;
}
.main-timeline .timeline-content1.timeline-content2 {
  margin-top: 20px;
}
.main-timeline .timeline1:nth-child(2n) .date-content1:before {
    left: 10px;
}
.main-timeline .date-content1:before {
    content: "";
    width: 37%;
    height: 2px;
    background: #c6c6c6;
    margin: auto 0;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
}
.main-timeline .date-outer1 {
    width: 125px;
    height: 125px;
    font-size: 16px;
    text-align: center;
    margin: auto;
    z-index: 1;
}
.main-timeline .date-outer1:before {
    background: #fff;
    border: 2px solid #000;
    left: -6px;
}
.main-timeline .date-outer1:before, .main-timeline .date-outer1:after {
    content: "";
    width: 160px;
    height: 160px;
    margin: 0 auto;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.33s ease-out 0s;
}
.main-timeline .date-outer1:after {
    border: 2px solid #000;
    left: 6px;
}
.main-timeline .date1 {
    width: 100%;
    margin: auto;
    position: absolute;
    top: 46%;
    left: 0;
}
.main-timeline .year1 {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #232323;
    line-height: 36px;
}
.main-timeline .timeline-content1 {
    width: 45%;
    padding: 35px 50px 20px 0;
    float: right;
  text-align: justify;
}


.heading {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
}

.text-align{
  text-align: justify;
}

.point li {
    line-height: 33px;
    list-style: none;
    font-size: 16px;
}

ul.point {
    padding: 0;
}

.designs a {
    float: right;
}

.contact-info i {
    color: #ab7429 !important;
}









@media only screen and (max-width: 600px) {
.contact-info img {
    padding-left: 4px;
    height: 20px;
}

.about-1 img {
    width: 100%;
}

input#firstname, input#lastname, input#email, input#password1, .form-control input#datepicker, input#tel, select.form-control {
  width: 100%!important;
     border: 1px solid #dadada!important;
   
}

.logo {
    padding-left: 30px !important;
}

.contact-info a {
    color: #fff;
    padding-left: 8px;
    letter-spacing: 0;
    font-size: 11px;
}

.about h1 {
    font-size: 23px;
}
.service h1 {
    font-size: 21px;
    margin-top: 7px;
    font-weight: 900;
    line-height: 29px;
}
.testimonials .testimonial-wrap {
    margin-top: 18px;
}
.call h6 {
    font-size: 17px;
    text-align: center;
    color: #ffffff;
    padding-top: 33px;
    padding-bottom: 52px;
    line-height: 35px;
}
.call h6 {
    font-size: 17px;
    text-align: center;
    color: #ffffff;
    padding-top: 33px;
    padding-bottom: 52px;
    line-height: 35px;
}
.counts .count-box {
    box-shadow: -10px -5px 40px 0 rgb(0 0 0 / 10%);
    padding: 30px;
    text-align: center;
    width: 100%;
    margin-bottom: 22px;
}
.ser-1 {
    background: #fef6ef;
    padding-top: 22px;
    padding-bottom: 30px;
}
ul.call-us {
    position: relative;
    top: -53px;
    background: #fff;
    display: grid;
    padding: 15px;
    border-radius: 10px;
}
#footer .footer-top .footer-info h3 {
    font-size: 26px;
    margin: 0 0 13px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}
.designs a {
    float: initial;

}

.designs a: {
    float:hover;
    color: #fff;
}
.copyright {
    background: #3f454c;
    text-align: center;
}
#footer .footer-top .footer-links {
    margin-bottom: 10px;
}
.img-fluids {
    width: 100%;
    height: auto;
} 
.mr-t {
    margin-top: 0px !important;
}
.row.mr-f img.img-fluid {
    margin-bottom: 20px;
}
}

a.sc-sbsi7l-0.ijfSyc {
    display: none !important;
}

a.sc-sbsi7l-0.cLcbjv {
    display: none !important;
}


.team{
  text-align: center;
}
.mr-t {
    margin-top: 25px;
}
.team h4 {
    font-size: 20px;
    margin-top: 10px;
}

.why-us h4 {
    font-size: 26px;
    font-weight: 700;
}

.logo {
    margin-left: -25px !important;
}
.trusted {
    padding-top: 14px;
}

.trusted h6 {
    padding-top: 15px;
    font-weight: 600;
}

.packages {
    padding-left: 28px;
}

.packages h6 {
    font-size: 20px;
}

.packages h1 {
    font-size: 50px;
    padding-bottom: 20px;
}

.about-content {
    padding-top: 17px;
    color: #000;
}

.about-content p {
    font-size: 18px;
    text-align: justify;
}

.left-gap {
    padding-right: 0;
}

.international h6 {
    font-size: 20px;
}

.international h1 {
    font-size: 50px;
    padding-bottom: 40px;
}

.user {
    padding-top: 16px;
    padding-left: 10px;
}

.user h6 {
    float: right;
    padding-right: 139px;
    padding-top: 19px;
    font-size: 20px;
}

.img-1 img {
    padding-right: 284px;
    margin-bottom: -21px;
}
.discount {
    margin-left: 10px;
}

.bx.bx-chevrons-right {
    font-size: 24px !important;
}

.slide {
    text-align: left;
    padding-top: 147px;
    padding-left: 7px;
}

.mr-top {
    position: relative;
    right: -75px;
    z-index: 99;
}

.footer-link ul {
    list-style: none;
    padding-left: 1px;
    font-size: 19px;
}

.footer-link i.bx.bx-chevrons-right {
    font-size: 21px !important;
}

.contact {
    text-align: center;
    
}

.contact h1 {
    font-weight: 600;
    color: #ab7429;
    font-size: 32px;
    padding-top: 30px;
    
}

.rail img {
   
}

.rail h3 {
    font-weight: 600;
    color: #ab7429;
    font-size: 32px;
    text-align: center;
    
}
.border {
    margin-top: 21px;
}
.rail img:hover {
   

}

.button {
    padding-top: 20px;
}

.button a {
    color: #fff;
    background: #aa6e3d;
    padding: 10px 20px 10px 20px;
    border-radius: 10px;
}

.button a:hover {
    color: #000;
  
}

.rail h5 {
    color: #000;
    font-weight: 600;
    font-size: 25px;
    padding-top: 75px;
}

.line {
    background: #0055f8;
    height: 2px;
    width: 62px;
    margin: auto;
}

.hotel {
    border: 1px solid #ccc;
    margin-bottom: 15px;
    text-align: center;
}

.hotel:hover {
    border: 1px solid #af7533 ;
    
}










.indian {
    border: 1px solid #ccc;
    margin-top: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.car-rent {
    border: 1px solid #ccc;
    margin-top: 30px;
    border-radius: 12px;
    transition: 0.3s;
}

.indian:hover {
   border-color: #ae772bc9;
   margin-top: 10px;
}

.car-rent:hover {
   border-color: #ae772bc9;
   margin-top: 10px;
}

.indian a {
    color: #000;
}

.car-rent a {
    color: #000;
}

.indian a:hover {
    color: #ae772bc9;
}

.car-rent a:hover {
    color: #ae772bc9;
}

.indian h5 {
    font-size: 19px;
    padding: 10px 10px 15px 15px;
    font-weight: 600;
    color: #ab7429;
    text-align: center;
}

.car-rent h5 {
    font-size: 19px;
    padding: 10px 10px 15px 15px;
    font-weight: 600;
    color: #ab7429;
    text-align: center;
}

.car-rent img {
    border-radius: 12px;
}

.car-rent h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: -16px;
    padding-left: 16px;
    text-align: center;
}

.indian h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-top: -16px;
    padding-left: 16px;
    text-align: center;
}

.indian img {
    width: 100%;
    border-radius: 12px;
}

.contact p {
    padding-right: 257px;
    padding-left: 257px;
}

.get-touch h4 {
    font-size: 27px;
    font-weight: 600;
    color: #000;
}

.form-control-lg {
    min-height: calc(1.5em + 1rem + calc(var(--bs-border-width)* 2));
    padding: .5rem 1.5rem;
    font-size: 1.2rem;
    border-radius: var(--bs-border-radius-lg);
    border-radius: 40px;
    margin-top: 8px;
}

.get-touch-1 a {
    color: #ab7429;
}

.get-touch-1 i {
    float: left;
    font-size: 27px;
    border: 1px solid;
    border-radius: 50%;
    color: #ab7429;
    padding: 21px;
   
}


.section-b2 {
    margin-top: 22px;
    border-right: 1px solid #af7533;
    padding-bottom: 17px;
    border-right-style: dashed;
    text-align: center;
}

.icon-box-content h6 {
    font-size: 18px;
    padding-top: 7px;
    color: #000;
}

p.mb-1 a {
    color: #453f3c;
}

p.mb-1 a:hover {
    color: #af7533;
}



.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #fe9b5c;
    border-color: var(--bs-btn-hover-border-color);
}
.get-touch i {
    margin-top: 5px;
}

.banner-1 {
    width: 100%;
}

.swiper-button-prev {
    color: #fffbff;
    background: #f99a54;
    border-radius: 26px;
    width: 38px;
    height: 38px;
}

.swiper-button-next {
    color: #fffbff;
    background: #f99a54;
   border-radius: 26px;
    width: 38px;
    height: 38px;
}


.position-relative {
    position: relative !important;
}


.position-relative h1 {
    padding-top: 120px;
    text-align: center;
    color: #fff;
    font-size: 46px;
}



.position-relative ol {
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.breadcrumbs {
    min-height: 44px;
    margin-top: 9px;
    padding-bottom: 80px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
    color: #fff;
}

.agile_signup_form h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 1em;
    color: #212121;
    position: relative;
    padding-bottom: 0em;
}

.form-control {
    height: auto;
    border: none;
    box-shadow: 1px 1px 1px 1px #eaeaea;
}

.form-control {
    position: relative;
    margin-top: 1em;
}

.form-control {
    padding: 0px 12px;
}


.form-control {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    border: 1px solid #dadada;
}



.agile_signup_form select.form-control {
    display: initial;
    margin-top: 0;
    color: #777;
}

.form-control label span {
    position: absolute;
    left: 32%;
}

.mfp-content {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
}


.register {
    background-color: #034498;
    width: 100%;
    padding: 10px 0px;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    color: #fff;
    outline: none;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    letter-spacing: 1px;
}



.form-control label {
    font-size: 1em;
    color: #212121;
    width: 40%;
    font-weight: 600;
    display: inline-block;
}
input#firstname, input#lastname, input#email, input#password1, .form-control input#datepicker, input#tel, select.form-control {
    padding: 12px 10px;
    font-size: 18px;
    width: 54%;
    border: none;
   
    color: #777;
    text-align: justify;
    outline: none;
    letter-spacing: 1px;
    font-weight: normal;
    background-color: transparent;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 27px;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
    font-size: 27px;
}

.get-touch {
    text-align: center;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    padding: 21px;
    margin-top: 28px;
    margin-bottom: 22px;
}
  
.tour-and {
    padding: 80px 0;
    background-image: url(https://makemydesigns.in/sun-world-travel/assets/img/tour.jpg);
    margin-top: 60px;
    background-repeat: no-repeat;
    margin-bottom: 70px!important;
    background-attachment: fixed;
}

.tour-and h2{
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 70px;
}

ul.point i {
    color: #a77319 !important;
    padding-right: 6px;
}