/*** Spinner Start ***/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:100,300,400,900,700|Playfair+Display:700');


 body {
  font-family: 'Montserrat', sans-serif;

 }
 h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1{
	  font-family: 'Montserrat', sans-serif;
 }

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: #404b9a;
    font-size: 18px;
    outline: none;
	text-transform:uppercase;
	letter-spacing: 1px;
 font-family: 'Raleway', sans-serif;



}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #fff !important;
	background:#cf1f12;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .2);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: #3f4c9a;
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background:#cf1f12;
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background:#3f4c9a;
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background:#cf1f12;
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
	width: 20px;
	height: 0px;
	background: #ccc;
	margin: 10px;
	border-radius: 30px;
	opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background:#cf1f12;
    opacity: 1;
}
.btn-secondary1{color: #fff;
  background-color: #cf1f12;
  border-color: #cf1f12;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }

    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

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

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 15px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;

}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}

/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #e3f0eb;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: #fff;
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
   background:transparent;
   /*  box-shadow: 0 0 30px #DDDDDD;*/
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}
.bg-l-blue{background-color:#3f4c9a;
}

.bg-offb{background-color:#fbfbfb
}
.about-section {
	position: relative;
	padding: 50px 0 15px;
	background-color: #fbfbfd;
	margin-bottom:25px;
}

.about-section .icon-shape-1{
	left: -215px !important;
	top: 40px !important;
	opacity: .50;
}

.about-section .icon-mic {
    right: 102px;
    top: -39px;
    position: absolute;
}

.about-section .icon-mic-2 {
    top: -21px;
    right: 67px;
    margin-left: -145px;
    position: absolute;
}

.about-section .icon-mic-2:nth-child(3){
	left: auto !important;
	top: auto !important;
	right: -140px !important;
	bottom: 240px !important;
	margin-left: 0;
}

.about-section .icon-man{
	margin-left: -565px !important;
	opacity: .10 !important;
	bottom: 0 !important;
	top: auto !important;
}

.about-section .icon-speaker {
    right: 70px;
    /* top: 0px; */
    /* bottom: 0px; */
    position: absolute;
}

.about-section .icon-speaker-2{
	right: -275px !important;
	top: 225px !important;
	left: auto !important;
}

.icon-mic{
	height: 60px;
	width: 50px;
	background-image:url(../img/icon-mic.png)
}

.icon-mic-2{
	height: 46px;
	width: 49px;
	background-image: url(../img/icon-mic-2.png);
}

.icon-speaker{
	height: 50px;
	width: 48px;
	background-image: url(../img/icon-speaker.png);
}

.icon-speaker-2{
	height: 73px;
	width: 70px;
	background-image:url(../img/icon-speaker-2.png);
}

.icon-shape-1{
	height: 148px;
	width: 150px;
	background-image: url(../img/shape-1.png);
}

.icon-man{
	height: 369px;
	width:505px;
	background-image: url(../img/icon-man.png);
}

.about-section .content-column{
	position: relative;
	margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
    padding-top: 66px;
    padding-right: 73px;
}

.about-section .content-column .sec-title{
	position: relative;
	margin-bottom: 43px;
}

.about-section .content-column .sec-title h2{
	font-size: 50px;
	line-height: 60px;
	padding-bottom: 0;
	margin-bottom: 15px;
}

.about-section .content-column .sec-title h2:before{
	display: none;
}

.about-section .content-column .sec-title .title{
	margin-bottom: 15px;
}

.about-section .content-column .sec-title .text{
	font-size: 18px;
	line-height: 32px;
	color: #7f8897;
	font-weight: 400;
}

.about-section .content-column .btn-box{
	position: relative;
}

.about-section .content-column .btn-box a{
	padding: 15px 32px;
}

.about-section .content-column .btn-box a:hover{
	-webkit-box-shadow: 0 0 30px rgba(0,0,0,0.20);
	-ms-box-shadow: 0 0 30px rgba(0,0,0,0.20);
	box-shadow: 0 0 30px rgba(0,0,0,0.20);
}

.about-section .image-column{
	position: relative;
	margin-bottom: 50px;
}

.about-section .image-column .image-box{
	position: relative;
	padding-bottom: 100px;
	padding-left: 100px;
}

.about-section .image-column .image-box img{
	position: relative;
	z-index: 1;
	border: 12px solid #ffffff;
	-webkit-box-shadow: 0 20px 30px rgba(14,16,48,.10);
	-ms-box-shadow: 0 20px 30px rgba(14,16,48,.10);
	box-shadow: 0 20px 30px rgba(14,16,48,.10);
}

.about-section .image-column .image-1{
	position: relative;
	margin-bottom: 0;
}

.about-section .image-column .image-1:before{
	position: absolute;
	height: 500px;
	width: 270px;
	right: -60px;
	top: 80px;
	background: rgb(255,138,1);
	background: -moz-linear-gradient(45deg, rgba(255,138,1,1) 0%, rgba(225,19,123,1) 100%);
	background: -webkit-linear-gradient(45deg, rgba(255,138,1,1) 0%,rgba(225,19,123,1) 100%);
	background: linear-gradient(45deg, rgba(255,138,1,1) 0%,rgba(225,19,123,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8a01', endColorstr='#e1137b',GradientType=1 );
	content: "";
	z-index: 0;
}

.about-section .image-column .image-2{
	position: absolute;
	left: 0;
	bottom: 0;
	margin-bottom: 0;
}
.sec-title .title {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 1em;
    color: #ff8a01;
    font-weight: 100;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.testimonial {
    background: #cf1f12;
}
.blue-btn{background-color:#3f4c9a
}
iframe.embed-responsive-item {
    height: 340px;
    width: 100%;
	padding:10px;
	background:#ffffff;
}



.services-section {
  position: relative;
  padding: 120px 0 90px;
  z-index: 2;
  background-image: linear-gradient(to right, #f6f9ff, #f3f8ff, #f0f6ff, #ecf5ff, #e8f4ff);
}
.services-section .sec-title {
  margin-bottom: 30px;
}

.service-block {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.service-block .inner-box {
  position: relative;
  overflow: hidden;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box:hover .image-box .title {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .inner-box:hover .image-box .icon {
  -webkit-transform: rotate(180deg) scale(-1);
          transform: rotate(180deg) scale(-1);
}
.service-block .inner-box:hover .content-box {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.service-block .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.service-block .image-box .image {
  margin-bottom: 0;
}
.service-block .image-box .image:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
background: rgb(19,107,161);
background: linear-gradient(180deg, rgba(19,107,161,0) 12%, rgba(13,26,54,1) 100%);

  content: "";
  border-radius: 5px;
}
.service-block .image-box .image img {
  width: 100%;
  min-height: 248px;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-block .image-box .icon {
  position: absolute;
  right: 25px;
  top: 25px;
  height: 57px;
  width: 57px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #cf1f12;
  border-radius: 50%;
  font-size: 20px;
  z-index: 9;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .image-box .icon:after {
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  content: "";
}
.service-block .image-box .title {
  position: absolute;
  left: 30px;
  bottom: 25px;
  color: #fff;
  margin-bottom: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.service-block .content-box {
  position: absolute;
  right: 15px;
  left: 15px;
  bottom: 15px;
  background-color: #ffffff;
  padding: 16px 20px 15px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.service-block .content-box .title {
  margin-bottom: 8px;
}
.service-block .content-box .text {
  font-size: 13px;
  line-height: 26px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1199px) {
  .service-block .content-box .text {
    line-height: 20px;
  }
}
.service-block .content-box .read-more {
  font-size: 13px;
  line-height: 18px;
  color: var(--theme-color1);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 800;
}
.service-block .content-box .read-more i {
  font-size: 14px;
  color: var(--theme-color2);
  display: inline-block;
  margin-left: 3px;
}

.cta-block {
  position: relative;
  margin-bottom: 30px;
}
.cta-block .inner-box {
  position: relative;
  background-color: #015cb5;
  padding: 40px 50px 50px;
  height: 100%;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cta-block .inner-box::before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image:url(../img/shape-2.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	content: "";
}
.cta-block .title a {
  color: #fff;
}
.btn-style-three {
  position: relative;
  font-size: 14px;
  line-height: 30px;
  padding: 10px 40px;
  font-weight: 700;
  overflow: hidden;
  color: #ffffff;
  border-radius: 50px;
  z-index: 1;
  background:#cf1f12;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.btn-style-three:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background-color: #ffffff;
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
          clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}
.btn-style-three:hover:before {
  -webkit-clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
          clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
.btn-style-three:hover {
  color: var(--theme-color1);
}
@media only screen and (max-width: 1199px) {
  .cta-block .inner-box {
    padding: 40px 40px;
  }
}

.bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bg-pattern-7 {
  background-image: url(../img/pattern-7.png);
}
.main-footer {
  position: relative;
  background-color: #071462;
  overflow: hidden;
}
.main-footer .footer-upper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -50px;
  margin-right: -50px;
  background-color:#c7170a;
  padding-right: 40px;
}

.main-footer .footer-upper .logo-box {
  position: relative;
  background-image:url(../img/logo.jpg);
  margin-right:0px;
}

.main-footer .footer-upper .contact-info {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.main-footer .footer-upper .contact-info li {
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 35px;
	margin-right: 35px;
	padding-right: 35px;
	list-style: none;
	top: 13px;
}
.main-footer .footer-upper .contact-info li .icon {
	position: absolute;
	left: 0;
	top: 50%;
	font-size: 20px;
	line-height: 20px;
	margin-top: -10px;
	color: #FFFFFF;
}
.main-footer .footer-upper .contact-info li .title {
font-size: 14px;
  line-height: 26px;
  color: #fff;
  display: block;
  margin-bottom: 0;
  font-weight: bold;
}
.main-footer .footer-upper .contact-info li .text {
	font-size: 16px;
	color: #ffffff;
	line-height: 26px;
	margin-bottom: 0;
}
.main-footer .footer-upper .contact-info li .text a {
  color: #ffffff;
}
.main-footer .widgets-section {
  position: relative;
  padding: 75px 0 40px;
}
.main-footer .footer-column {
  position: relative;
  margin-bottom: 50px;
}
.main-footer .footer-widget {
  position: relative;
}
.main-footer .widget-title {
	position: relative;
	display: inline-block;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.2em;
	margin-bottom: 30px;
}
.user-links {
  position: relative;
  margin-bottom: 50px;
}
.user-links li {
	position: relative;
	font-size: 15px;
	line-height: 26px;
	color: #7b87a1;
	font-weight: 400;
	margin-bottom: 10px;
}
.user-links li a {
	position: relative;
	display: inline-block;
	color: inherit;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.user-links li a::before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background-color: #101f79;
	content: "";
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.main-footer .text {
	font-size: 15px;
	color: #7b87a1;
	line-height: 24px;
	font-weight: 500;
	margin-bottom: 20px;
}

.subscribe-form {
  position: relative;
  margin-bottom: 30px;
}
.subscribe-form .form-group {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 0;
	width: 100%;
}
.subscribe-form .form-group input[type="text"], .subscribe-form .form-group input[type="email"] {
	position: relative;
	display: block;
	height: 40px;
	width: 100%;
	font-size: 15px;
	line-height: 20px;
	color: #ffffff;
	padding: 10px 0px;
	padding-right: 60px;
	background: transparent;
	border-bottom: 4px solid rgba(255, 255, 255, 0.2);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	border-top: 0px;
  border-right: 0px;
  border-left: 0px;
}

.subscribe-form .form-group .theme-btn {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 40px;
	line-height: 40px;
	display: block;
	background: none;
	font-size: 18px;
	color: #fff;
  border: 0px;
}
.social-icon-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-icon-two li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 10px;
}
.social-icon-two li:first-child {
  margin-left: 0;
}
.social-icon-two li a {
  position: relative;
  display: block;
  line-height: 42px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50%;
  background-color: #081125;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.social-icon-two li a:hover {
  color: #ffffff;
  background-color: #010d51;
}
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom .inner-container {
  position: relative;
  padding: 30px 15px;
  text-align: center;
}
.footer-bottom .copyright-text {
  position: relative;
  font-size: 15px;
  line-height: 25px;
  color: #7b87a1;
}
.footer-bottom .copyright-text a {
  color: inherit;
}
.navbar-dark .navbar-toggler-icon{content: "\f0c9" !important;
    font-family: "font awesome 5 free";
	color:#000;
	font-size:16px;
}

.text-orange {
  font-family: 'Raleway', sans-serif;
  color: #fa8714;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 300;
}
.huflDf {
	line-height: 1.32;
	font-size: 35px !important;
	font-weight: bold;
	font-style: normal;
	color: rgb(17, 17, 17);
}
.bg-about{
	    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/aboutus.jpg) center center no-repeat;
    background-size: cover;
	height:400px;
}
.bg-what-offer{
	    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/what-we-offer.jpg) center center no-repeat;
    background-size: cover;
	height:400px;
}


.bg-domestic-tours{
	    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/domestic-tour.jpg) center center no-repeat;
    background-size: cover;
	height:400px;
}
.bg-international-tours{
	    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/international-tour.jpg) center center no-repeat;
    background-size: cover;
	height:400px;
}

.sec-title {
  position: relative;
  margin-bottom: 60px;
}
.sec-title .sub-title {
	position: relative;
	font-size: var(--sec-title-subtitle-font-size);
	color: var(--sec-title-subtitle-color);
	line-height: var(--sec-title-subtitle-line-height);
	font-weight: var(--sec-title-subtitle-font-weight);
	font-family: var(--sec-title-subtitle-font-family);
	letter-spacing: 0.1em;
	top: -5px;
	display: block;
	text-transform: uppercase;
}
.sec-title.text-center h2::before {
  left: 50%;
  margin-left: -30px;
}
.sec-title h2::before {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 3px;
	background: -webkit-gradient(linear, left top, right top, from(#ebeef5)), to(transparent));
	background: linear-gradient(to right, var(--bg-theme-color2), transparent);
	content: "";
}
.feature-block {
  position: relative;
  margin-bottom: 30px;
}
.feature-block .inner-box {
	position: relative;
	padding: 50px 30px 32px;
	padding-right: 120px;
	border-radius: 5px;
	background-color: #fff;
	border: 1px solid #d4d9e6;
	overflow: hidden;
}

.feature-block .icon {
	position: absolute;
	right: -25px;
	top: -35px;
	height: 100px;
	width: 100px;
	border-radius: 50%;
	background-color: #c9dcef;
	color: #015cb5;
	font-size: 27px;
	line-height: 1em;
	padding-left: 40px;
	padding-bottom: 30px;
	/* display: -webkit-box; */
	/* display: -ms-flexbox; */
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.feature-block .cat {
	position: relative;
	font-size: 13px;
	line-height: 1em;
	font-weight: 400;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin-bottom: 20px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}
.why-choose-us .bottom-text {
	position: relative;
	font-size: 16px;
	color: #fff;
	background-color: #cf1f12;
	border-radius: 50px;
	line-height: 20px;
	min-height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 2px 2px;
	padding-left: 40px;
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
	margin-top: 10px;
	color: #fff;
}

.feature-block .title {
  margin-bottom: 0;
  color:#111111;
}


.feature-block .inner-box:hover {

	background-color: #d7eafd;
	background-image: url(../img/shape-1-1.png);
	background-repeat: no-repeat;
	background-position: center left;
	content: "";
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	color:#fff;
}

.packages-three{
  position: relative;
  padding: 0 0 140px;
  background: #fff;
  z-index: 5;
}

.packages-three .search-one{
  position: relative;
  margin-bottom: 130px;
}

.packages-three .packages .row{
  margin: 0 -12px;
}

.packages-three .packages .package-block{
  padding: 0 12px;
  margin-bottom: 45px;
}

.package-block .inner-box {
	position: relative;
	display: block;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.03);
	box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.07);
	min-height: 100%;
	border-radius: 10px;
}
.package-block .image-box {
  position: relative;
}
.package-block .image-box .image {
  position: relative;
  background: var(--primary-color);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.package-block .image-box .image img {
  position: relative;
  width: 100%;
  border-radius: 10px 10px 0 0;
  transition: all 0.5s ease;
}
.package-block .lower-box {
  position: relative;
  display: block;
  padding:15px 30px 0;
}
.package-block .lower-box .p-icon {
	position: absolute;
	top: -36px;
	right: 30px;
	width: 72px;
	height: 72px;
	z-index: 5;
}

.package-block .lower-box h5 {
	position: relative;
	font-weight: 400;
	color: #ccc;
	margin-bottom: 20px;
	text-align:center;
}
.package-block .lower-box h5 a {
	color: #cf1f12;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 24px;
	text-align: center;
}
.package-block .lower-box .info .duration {
	position: relative;
	float: left;
}
.package-block .lower-box .info .persons {
	position: relative;
	float: right;
}
.package-block .bottom-box .rating {
  position: relative;
  float: left;
}
.package-block .bottom-box .rating a {
  font-size: 12px;
  color: var(--light-gray-gray);
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
}

.package-block .bottom-box .price {
	position: relative;
	font-size: 14px;
	color: var(--medium-gray-color);
	line-height: 20px;
	float: right;
}

.package-block .bottom-box .price .amount {
	font-size: 18px;
	color: var(--primary-color);
}
.auto-container {
  position: static;
  max-width: 1360px;
  padding: 0px 20px;
  margin: 0 auto;
}
.filter-row{
  position: relative;
  padding-bottom: 10px;
}

.filter-row .s-info{
  position: relative;
  float: left;
  color: var(--medium-gray-color);
  line-height: 24px;
  padding: 3px 0;
  margin-bottom: 20px;
}

.filter-row .filters{
  position: relative;
  float: right;
}

.filter-row .filters .sort-by{
  position: relative;
  float: left;
  margin-bottom: 20px;
  margin-right: 30px;
}

.filter-row .filters .layout-links{
  position: relative;
  float: right;
  line-height: 30px;
  margin-bottom: 20px;
}

.filter-row .filters .layout-links a{
  position: relative;
  display: inline-block;
  vertical-align: top;
  color: #c7cece;
  transition: all 500ms linear;
}

.filter-row .filters .layout-links a:hover,
.filter-row .filters .layout-links a.active{
    color: var(--medium-gray-color);
}

.styled-pagination {
	position: relative;
	padding-top: 15px;
}
.styled-pagination ul li {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}
.styled-pagination ul li a {
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
	line-height: 46px;
	color: var(--medium-gray-color);
	text-align: center;
	border: 1px solid rgba(0, 0, 0, 0.50);
	border-radius: 5px;
	transition: all 500ms linear;
}
.centered {
  text-align: center;
}
.styled-pagination ul li:hover a, .styled-pagination ul li.active a {
	color: #fff;
	background:#cf1f12;
	border-color: #ccc);
}
.styled-pagination ul li.active a {
  color: #fff;
  background: #cf1f12;
  border-color: #ccc;
}
.dsp-container{
  position: relative;
  padding: 80px 0 50px;
  line-height: 1.6em;
}

.dsp-container p {
  line-height: 1.65em;
  margin-bottom: 0px;
  color: #111;
}

.dsp-container .sidebar-side{
  position: relative;
}

.dsp-container .sidebar-inner{
  position: relative;
  padding-left: 15px;
}

.dsp-container .content-side{
  position: relative;
}

.dsp-container .content-inner{
  position: relative;
}

.dsp-container .dsp-widget{
  position: relative;
  margin-bottom: 50px;
}

.dsp-container .sp-header{
  position: relative;
  margin-bottom: 40px;
}

.dsp-container .sp-header .loc-rat{
  position: relative;
  margin-bottom: 5px;
}

.dsp-container .sp-header .loc-rat .location{
  position: relative;
  float: left;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--primary-color);
  font-family: 'Gilroy_Bold', sans-serif;
  margin-bottom: 10px;
}

.dsp-container .sp-header .loc-rat .rating{
  position: relative;
  float: left;
  padding-top: 4px;
  line-height: 24px;
  margin-left: 25px;
}

.dsp-container .sp-header .loc-rat .rating a{
  font-size: 16px;
  color: var(--light-gray-gray);
  display: inline-block;
  vertical-align: top;
  line-height: 24px;
}

.dsp-container .sp-header .loc-rat .rating i{
  position: relative;
  color: var(--secondary-color);
  font-size: 18px;
  padding-right: 5px;
  line-height: 24px;
  color: var(--secondary-color);
  z-index: 1;
}

.dsp-container .sp-header .loc-rat .rating strong{
  position: relative;
  font-size: 18px;
  color: var(--dark-gray-gray);
}

.dsp-container .sp-header .loc-rat .add-fav{
  position: relative;
  float: right;
  padding-top: 4px;
  line-height: 24px;
}

.dsp-container .sp-header .loc-rat .add-fav a{
  color: var(--medium-gray-color);
  display: block;
  line-height: 24px;
}

.dsp-container .sp-header .loc-rat .add-fav a i{
  padding-right: 7px;
  color: var(--primary-color);
  line-height: 24px;
}

.dsp-container .sp-header .loc-rat .add-fav a:hover{
    color: var(--primary-color);
}

.dsp-container .sp-header h1 {
    position: relative;
    font-weight: 600;
    color: #cf1f12;
    font-size: 28px;
    margin-bottom: 18px;
    background: #f7f7f7;
    padding: 10px 10px 7px 10px;
    border-radius: 5px;
}

.dsp-container .content-side h3{
  margin-bottom: 20px;
   font-size: 20px;
    color: #333;
    font-weight: 600;
}

.dsp-container .sp-header .info{
  position: relative;
  font-size: 16px;
  line-height: 24px;
}

.dsp-container .sp-header .info .duration{
  position: relative;
  float: left;
}

.dsp-container .sp-header .info .persons{
  position: relative;
  float: left;
  margin-left: 20px;
}

.dsp-container .sp-header .info .duration i,
.dsp-container .sp-header .info .persons i{
  position: relative;
  padding-right: 5px;
  color: var(--primary-color);
}

.dsp-container .content-side .upper-content{
  position: relative;
  margin-bottom:20px;
}

.dsp-container .content-side .upper-content h3,
.dsp-container .content-side .upper-content h4,
.dsp-container .content-side .upper-content h5{
      margin-bottom: 5px;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.dsp-container .basic-info h5{
  margin-bottom: 0 !important;
}
.styled-list-one {
  margin-bottom: 20px;
  padding-left: 0px;
  margin-left: 0px;
}

.styled-list-one li:last-child{
  margin-bottom: 0;
}

.styled-list-one li {
	position: relative;
	padding-left: 11px;
	line-height: 1.70em;
	font-weight: 400;
	margin-bottom: 10px;
	list-style: none;
}
/*.styled-list-one li:before{
   content: "\f054";
  font-family: "font awesome 5 free";
  font-weight: 400;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 28px;
  text-align: center;
  color: var(--primary-color);
}*/

.basic-info{
  position: relative;
  padding-top: 10px;
  margin-bottom: 30px;
}

.basic-info h5{
  margin-bottom: 0;
}

.basic-info .i-block{
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 28px;
}

.basic-info .i-block .i-title {
	position: relative;
	float: left;
	color: #111;
	width: 20%;
	font-weight: 600;
}
.basic-info .i-block .i-content{
  position: relative;
  float: left;
  width: 80%;
  padding-left: 10px;
}

.styled-list-two{
  margin-bottom: 20px;
}

.styled-list-two li{
    position: relative;
    padding-left: 10px;
    line-height: 1.70em;
/*    font-weight: 400;*/
    margin-bottom: 10px;
	color:#111;
	list-style-type:none;
}
.styled-list-two li i{color:#c7170a;
}


.styled-list-three ul{
	padding:0px;
	margin:0px;
}
.styled-list-three li{
    position: relative;
    padding-left: 10px;
    line-height: 1.70em;
/*    font-weight: 400;*/
    margin-bottom: 10px;
	color:#111;
	list-style-type:none;
}
.styled-list-three li i{color:#c7170a;
}



.styled-list-two li:last-child{
  margin-bottom: 0;
}

/*.styled-list-two li:before{
  content: "\f107";
    font-family: "font awesome 5 free";
  font-weight: 400;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 28px;
  text-align: center;
  color: #28ac28;
}*/

.d-count {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 86px;
  height: 42px;
  line-height: 30px;
  padding: 6px 5px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  background: var(--tertiary-color);
  border-radius: 3px;
}

.accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	color: #fff !important;
	text-align: left;
	background-color: #071462 !important;
	font-size: 18px;
	font-weight: 600;
}
.accordion-button:focus {
	z-index: 3;
	border-color: #db8c8c;
	outline: 0;
	box-shadow: 0 0 0 .25rem rgba(255, 255, 255, 0.25) !important;
}

.accordion-body{color:#111;
}
.dsp-container .get-help-widget .inner {
	position: relative;
	display: block;
	background: #f2f4f7;
	padding: 30px 30px 30px;
	border-radius: 10px;
}
.dsp-container .get-help-widget .call-to .icon {
	position: absolute;
	left: 0;
	top: 6px;
	width: 56px;
	height: 56px;
	font-size: 18px;
	background: #c7170a;
	color: #fff;
	line-height: 56px;
	text-align: center;
	border-radius: 50%;
}
.dsp-container .get-help-widget .call-to a .nmbr {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 26px;
	font-weight:600;
}
.dsp-container .get-help-widget .call-to a {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #111;
	padding-top: 8px;
	padding-left: 70px;
	min-height: 56px;
}

.all-pacj-dfgh h6 {
	font-size: 24px;
	background: #3e4a9c;
	padding: 20px 31px 20px 30px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1.1px;
	margin-bottom: 0px;
	border-radius: 5px 5px 0px 0px;
}
.bookk0-natd-form {
	background: #cf1f12;
	padding: 24px 25px 55px 25px;
	border-radius: 0px 0px 5px 5px;
}
.bookk0-natd-form label {
	margin: 0;
	font-size: 14px;
	/* font-family: "Lato", sans-serif; */
	color: #fff;
	font-weight: 600;
	margin-bottom: 4px;
	margin-top: 10px;
	letter-spacing: 0.25px;
}
.bookk0-natd-form select {
	background: #cf1f12;
	padding: 6px 0px 6px 17px;
	height: 45px;
	width: 100%;
	color: #ffffff;
	font-size: 17px;
	border: 2px solid;
	font-weight: 500;
	border-radius: 0;
	position: relative;
	cursor: pointer;
}
.serv-ivmf-2 {
	position: absolute;
	right: 20px;
	top: 66px;
	color: #000;
}

.bookk0-natd-form .form-control {
	padding: 0 20px;
	height: 45px;
	background: transparent;
	border: 2px solid #fff;
	border-radius: 0;
	color: #fff;
}

.bookoing-secrty {
	margin-bottom: 40px;
	border-radius: 5px;
}

@media only screen and (max-width: 1199px) {
  .main-footer .footer-upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 0 70px 30px;
  }
    .main-footer .footer-upper .contact-info {
    width: 100%;
    margin: 0 -15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

}
}

@media only screen and (max-width: 767px) {
  .main-footer .footer-upper .contact-info li {
    width: 100%;
  }
  .main-footer .footer-upper .contact-info li .icon {
    position: relative;
    top: 0;
  }
  .about-section .content-column .inner-column {
    padding-top: 0;
  }
  .about-section {
    padding: 10px 0 20px;
  }
   .about-section .image-column .image-box {
    padding-bottom: 0;
	padding-left: 0;
  }
   .about-section .image-column .image-box img {
    display: block;
    width: 100%;
  }
  .about-section .image-column .image-2 {
    position: relative;
    margin-top: 40px;
  }
   .about-section .image-column .image-box img {
    display: block;
    width: 100%;
  }
  .about-section .image-column .image-1::before
  {display:none;
  }
  .about-section .content-column .sec-title h2{
	    font-size: 34px;
    line-height: 1.2em;
  }
  .about-section .content-column .inner-column {
  position: relative;
  padding-top: 0px;
  padding-right: 46px;
}

}
.tour-image{background-size: cover;height:400px;
    width:100%;
    z-index: 0;
    }
    .text-over-img {
        z-index: 1;
        font-size: 1.2em;
        margin-top: -347px;
        position: absolute;
        text-align: center;
        left: 9%;
        background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)) center center no-repeat;
    }

/*** Footer End ***/
