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

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

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

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

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

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

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

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

.btn.btn-danger {
    box-shadow: inset 0 0 0 0 var(--bs-danger);
    padding: 15px 15px;
    /* margin-top: 150px; */
}

.btn.btn-danger:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-danger) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-danger);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-danger);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.program{
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}
.program::before{
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
.program::after{
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-danger);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-danger) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-danger) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-danger) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}
@media (max-width: 999px) {
    
    .btn.btn-danger {
        box-shadow: inset 0 0 0 0 var(--bs-danger);
        padding: 15px 30px;
        
    }
}


/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-danger);
}

.navbar-light .navbar-brand img {
    max-height: 75px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 80px;
}

.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: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-danger);
    color: var(--bs-white);
}

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

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-danger);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-danger);
        color: var(--bs-danger);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-danger) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 90px;
        position: absolute;
        z-index: 9999;
        top: 10px;
    }
}

.pencil_img{
    z-index: 0;
    display: none;
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-danger);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        /* margin-top: -100px; */
    }

    .pencil_img{
        display: block;
    }
   

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
   
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/

/* ============================================================== 
     # Banner 
=================================================================== */
body, 
.banner-area, 
.banner-area div {
  height: 100%;
}

.banner-area.auto-height, 
.banner-area.auto-height div {
  height: auto;
}

.banner-area .box-cell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.banner-area .box-table {
  display: table;
  width: 100%;
}

.banner-area .box-cell, 
 .banner-area .box-cell div {
  height: auto;
}

.banner-area {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-area.banner-style-four {
  overflow: inherit;
}

.banner-area.shadow.dark-hard::after {
  background: #323a45;
}

.banner-area .wavesshape {
  bottom: -15px;
  left: 0;
  position: absolute;
  right: 0;
  top: auto;
  width: 100%;
}

.banner-area .wavesshape.shape {
  bottom: -50px;
}

.banner-area .content {
  position: relative;
  z-index: 9;
}

.banner-area.wavesshape {
  position: relative;
  z-index: 1;
}

.banner-area.triangle-shadow {
  position: relative;
  z-index: 1;
}

#home{
    position: relative;
    background-image: url("../image/banner-2.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    padding: 100px 0 50px 0;
}
#home::before{
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: auto;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -10;
}

.video_img{
    position: relative;
}
.video_title{
    top: 70%;
    text-align: center;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 0;
}
.video_title a{
    background-color: var(--bs-danger);
    border-radius: 50px;
    padding: 20px 35px;
    color: #fff;
    font-size: 18px;
}

@media (max-width: 999px) {
    .video_title a{
        background-color: var(--bs-danger);
        border-radius: 50px;
        padding: 15px 30px;
        color: #fff;
        font-size: 16px;
    } 
}
@media (max-width: 768px) {
    .video_title a{
        background-color: var(--bs-danger);
        border-radius: 50px;
        padding: 10px 25px;
        color: #fff;
        font-size: 14px;
    } 
    #home {
        position: relative;
        background-image: url(../image/banner-2.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 80px 0 50px 0;
    }
}

.banner-area.triangle-shadow::before {
  border-bottom: 0 solid transparent;
  border-right: 100vw solid var(--white);
  border-top: 80px solid transparent;
  bottom: 0;
  content: "";
  height: 0;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 101;
}

.banner-area.shadow-inner .content {
  padding: 30px;
  position: relative;
  z-index: 1;
}

.banner-area a {
  margin-right: 5px;
}

.banner-area.text-center a {
  margin-right: 3px;
  margin-left: 3px;
}

.banner-area.content-double .double-items {
  align-items: center;
  align-self: center;
  display: flex;
  justify-content: center;
  vertical-align: middle;
}

.banner-area.auto-height .double-items,
.banner-area.auto-height .content-box {
  overflow: hidden;
  padding-top: 160px;
}

.banner-area .content-box .banner {
  margin-top: 50px;
}

.banner-area .content-box.video-popup .banner {
  position: relative;
}

.banner-area .video-play-button.video-inline {
  bottom: inherit;
  display: inline-block;
  font-size: 20px;
  left: 0;
  margin-bottom: 0 !important;
  margin-left: 20px;
  margin-right: 0 !important;
  margin-top: 0 !important;
  padding: 0;
  position: relative;
  top: 0;
  transform: inherit;
  height: 60px;
  width: 60px;
  line-height: 60px;
}

.banner-area .content-box.video-popup .content a {
  margin-top: 30px !important;
}

.banner-area .video-play-button.video-inline i {
  position: relative;
  text-align: center;
  top: 20px;
  width: 100%;
  padding-left: 3px;
}

.banner-area .video-play-button.video-inline::before,
.banner-area .video-play-button.video-inline::after {
  height: 60px;
  width: 60px;
}

.banner-area .item-cell .item {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.banner-area.text-small .content h1 {
  font-weight: 700;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.banner-area.text-small.banner-style-two .content h1 {
  font-size: 60px;
  line-height: 1.1;
  text-transform: none;
}

ul.list-style-one {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  border: 1px solid;
  padding: 5px;
  padding-right: 0;
  padding-left: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

ul.list-style-one li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--color-heading);
  font-weight: 600;
  position: relative;
  padding-right: 30px;
}

ul.list-style-one li::after {
  position: absolute;
  right: 10px;
  top: 50%;
  content: "";
  height: 10px;
  width: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: translateY(-50%);
}

ul.list-style-one li:last-child::after {
  display: none;
}

.banner-area.text-small .content {
    margin-top: 30px;
    text-align: right;
  }
.banner-area.text-small .content a {
  margin-top: 20px;
}

@media (max-width: 999px) {
    .topbar {
        display: none;    
    }
    .banner-area.text-small .content a {
        margin-top: 20px;
      }
    .btn.btn-danger {
        box-shadow: inset 0 0 0 0 var(--bs-danger);
        padding: 15px 15px;
        margin-top: 20px;
    }
    .banner-area.text-small .content{
        text-align: center;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
    .banner-area.text-small .content a {
        margin-top: 20px;
      }
    .btn.btn-danger {
        box-shadow: inset 0 0 0 0 var(--bs-danger);
        padding: 15px 15px;
        margin-top: 20px;
    }
    .banner-area.text-small .content{
        text-align: center;
    }
}



#particles-js,
#ripple {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.banner-area.text-small.banner-style-two .content p {
    font-weight: 400;
}

.banner-area.text-small.banner-style-two .content h1 strong {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.banner-area.text-small.banner-style-two .content h1 strong::after {
  position: absolute;
  left: 0;
  bottom: 0px;
  content: "";
  height: 100%;
  width: 100%;
  background: url(assets/img/shape/6.png);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Banner Content */
.banner-area .video-play-button {
  color: var(--color-primary) !important;
  display: block;
  font-size: 32px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  top: 25px;
  width: 80px;
  z-index: 10;
}

.banner-area .video-play-button i {
  padding-left: 5px;
  position: relative;
}

.banner-area.text-small.banner-style-seven .content h1 {
  font-size: 65px;
}

.banner-area .double-items .content.inc-video a.video-inline.video-play-button {
  display: inline-block;
  left: 10px;
  top: -10px;
}

.banner-area.banner-style-two .double-items .content.inc-video a.video-inline.video-play-button {
  left: 0;
  top: 0;
}

.banner-area .double-items .content.inc-video a.video-inline.video-play-button i {
  color: var(--white);
  margin-left: -14px;
  text-align: center;
}

.banner-area .video-play-button.item-center {
  line-height: 80px;
  margin: auto;
}

.banner-area .video-play-button.item-center i {
  left: 25px;
  position: absolute;
  top: 23px;
}

.banner-area.text-small .video-play-button::before {
  left: 15px;
  background-color: var(--color-primary);
}

.banner-area.text-small .video-play-button::after {
  left: 15px;
  background-color: var(--color-primary);
}

.banner-area.text-small .content p {
  color: var(--dark);
}

.banner-area.text-small.text-light .content p {
  color: var(--white);
}

.banner-area.bg-theme.text-dark .content p {
  color: var(--dark);
}

.banner-area.auto-height .content-box .banner-carousel .owl-dots {
  bottom: 20px;
  margin: 0;
  min-height: auto;
  position: absolute;
  text-align: center;
  width: 100%;
}

.banner-area.auto-height .content-box .banner-carousel .owl-dots span {
  background: var(--white) none repeat scroll 0 0;
  border: 3px solid var(--color-primary);
  height: 15px;
  width: 15px;
}

.banner-area.auto-height .content-box .banner-carousel .owl-dots .owl-dot.active span {
  background: var(--color-primary) none repeat scroll 0 0;
}

.banner-area .form-info {
  padding: 20px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  background-color: rgba(24, 23, 23, 0.1);
}
.banner-area .form-info-1 {
    padding: 20px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
    background-color: rgba(24, 23, 23, 0.1);
  }

.form-info{
    background-color: #777;
    width: 80%;
}
.form-info-1{
    background-color: #777;
    width: 100%;
}

@media (max-width: 999px) {
    .form-info{
        background-color: #777;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-info{
        background-color: #777;
        width: 100%;
    }
}

.banner-area .form-info img {
  position: absolute;
  left: 100%;
  bottom: -50px;
  width: 100px;
  margin-left: -50px;
  animation: UpDown 2s linear infinite;
}

/* Infinite Up Down Animation */
@keyframes UpDown {
	0% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	50% {
		-webkit-transform: translateY(-25px);
		transform: translateY(-25px);
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}
}


.banner-area .form-info::after {
  background: #000;
  border-radius: 5px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.banner-area.shadow.dark .form-info::after {
  background: var(--bs-dark) none repeat scroll 0 0;
}

.banner-area .form-info h2 {
  line-height: 1.3;
  /* margin-bottom: 25px; */
  text-transform: capitalize;
  font-size: 28px;
}

.banner-area.shadow.dark .form-info h2 {
  color: var(--dark);
}

.banner-area .form-info h2 span {
  color: var(--color-danger);
  font-weight: 900;
}

.banner-area .form-info button {
  background: var(--bs-danger);
  /* border: medium none; */
  border-radius: 5px;
  /* box-shadow: inherit; */
  /* color: var(--white);; */
  color: #fff;
  /* font-family: var(--font-default); */
  font-weight: 700;
  padding: 14px 35px;
  font-size: 15px;
}

.banner-area.text-normal .content h1 {
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.banner-area.text-normal .content span {
  color: var(--color-danger);
}

.banner-area.text-normal .content a {
  margin-top: 15px;
}

.banner-area p {
  font-size: 18px;
}

.banner-area.banner-style-seven .form-info h2 {
  font-size: 40px;
  margin-bottom: 50px;
}

.banner-area.banner-style-seven .form-info input {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 55px;
  padding: 20px;
}

.banner-area.banner-style-seven .form-info button {
   background: var(--bs-danger);
  color: var(--color-heading);
}

.banner-area.banner-style-seven .form-info h2 span {
  color: var(--white);
  font-weight: 700;
  border-bottom: 6px solid;
}

.banner-area.banner-style-seven .form-info input::-webkit-input-placeholder { /* Chrome */
  color: var(--white);;
}
.banner-area.banner-style-seven .form-info input:-ms-input-placeholder { /* IE 10+ */
  color: var(--white);;
}
.banner-area.banner-style-seven .form-info input::-moz-placeholder { /* Firefox 19+ */
  color: var(--white);;
  opacity: 1;
}
.banner-area.banner-style-seven .form-info input:-moz-placeholder { /* Firefox 4 - 18 */
  color: var(--white);;
  opacity: 1;
}

@media (min-width: 1024px) {
  .banner-area p {
    padding-left: 21%;
  }
  .banner-area.text-center p {
    padding: 0 10%;
  }
  .clients-items {
      border-left: 1px solid #cccccc;
  }

  .shape-theme .clients-items {
    border: none;
  }

  .align-center {
    align-items: center;
  }
}

.form.shadow-light form input {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background: transparent none repeat scroll 0 0;
  border-color: none;
  border-image: none;
  border-radius: inherit;
  border-style: none none solid;
  border-width: medium medium 1px;
  box-shadow: inherit;
  padding: 0;
  color: var(--dark);
}

.form.shadow-light form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
  color: var(--dark) !important;
  opacity: 1;
}

.form.shadow-light form input::-moz-placeholder {
    /* Firefox 19+ */
  color: var(--dark) !important;
  opacity: 1;
}

.form.shadow-light form input::-ms-input-placeholder {
    /* IE 10+ */
  color: var(--dark) !important;
  opacity: 1;
}


/* New Shape */
.banner-area.half-bg {
  position: relative;
  z-index: 1;
}

.banner-area.half-bg::before {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 50%;
  background: var(--color-danger);
  mix-blend-mode: multiply;
}

.banner-area.half-bg .form-info {
  padding: 0;
}

.banner-area.half-bg .form-info::after {
  display: none;
}

.banner-area .thumb.width-120 img {
  max-width: 120%;
} 

.banner-area .thumb.width-130 img {
  max-width: 130%;
} 

.banner-area .thumb.width-140 img {
  max-width: 140%;
} 

.banner-area .thumb.width-150 img {
  max-width: 150%;
}

.banner-area.text-xl .double-items h1 {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 22px;
    text-transform: capitalize;
}

.banner-area.text-xl .double-items h1 strong {
    font-weight: 700;
    display: block;
    font-size: 60px;
    line-height: 1;
    margin-top: 25px;
    text-transform: capitalize;
}

.banner-area.text-xl .double-items a {
  margin-top: 20px;
}

.banner-area.top-shape {
    position: relative;
    z-index: 1;
}

.banner-area.top-shape::after {
    position: absolute;
    right: -200px;
    top: -200px;
    height: 700px;
    width: 700px;
    background: var(--color-danger);
    z-index: -1;
    content: "";
    border-radius: 50%;
    opacity: 0.1;
}

.banner-area.top-shape::before {
    position: absolute;
    right: -200px;
    top: -200px;
    height: 800px;
    width: 800px;
    background: var(--color-danger);
    z-index: -1;
    content: "";
    border-radius: 50%;
    opacity: 0.1;
}

.banner-area .bottom-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.banner-area .bottom-bg img {
    width: 100%;
}

.banner-area .fixed-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: -1;
}

.banner-area .form-box {
    background: var(--white);
    overflow: hidden;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 0 25px #e8e5e5;
}

.banner-area .form-box h2 {
    color: #232323;
    font-weight: 500;
    font-size: 25px;
    line-height: 1.4;
}

.banner-area .form-box h2 span {
    color: var(--color-primary);
    font-weight: 700;
}

.banner-area .form-box input {
    border: none;
    box-shadow: inherit;
    border-bottom: 1px solid #e7e7e7;
    padding: 0;
    border-radius: inherit;
}

.banner-area .form-box button {
    font-family: var(--font-default);
    border: none;
    background: var(--color-primary);
    color: var(--white);
    padding: 10px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 15px;
}

.banner-area.top-pad-80 .double-items {
    padding-top: 80px;
}

.banner-area .fixed-shape-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background-position: left top;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-area .multi-thumb {
    position: relative;
}

.banner-area .multi-thumb .helper {
  position: absolute;
  top: -50px;
  max-width: 180px !important;
  left: 0;
  animation: moving linear infinite 10s;
}

.banner-area .multi-thumb .helper:last-child {
  right: -10%;
  left: auto;
  max-width: 120px !important;
  top: -50px;
  animation: moving linear infinite 15s;
}

.overflow-inherit {
  overflow: inherit !important;
}

.banner-style-five h1 {
  font-size: 65px;
}

.banner-style-five .btn {
  border-radius: 30px;
}

.banner-area.shadow.dark.banner-style-five .form-info::after {
  background: transparent;
}

.banner-area.shadow.dark.banner-style-five .form-info {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: -1px -1px 10px rgba(255,255,255,.3) inset,  2px 2px 20px rgba(0,0,0,.5);
}

.banner-area.shadow.dark.banner-style-five .form-info input {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.banner-area.shadow.dark.banner-style-five .form-info input::-webkit-input-placeholder { /* Chrome */
  color: var(--white) !important;
}
.banner-area.shadow.dark.banner-style-five .form-info input:-ms-input-placeholder { /* IE 10+ */
  color: var(--white) !important;
}
.banner-area.shadow.dark.banner-style-five .form-info input::-moz-placeholder { /* Firefox 19+ */
  color: var(--white) !important;
  opacity: 1;
}
.banner-area.shadow.dark.banner-style-five .form-info input:-moz-placeholder { /* Firefox 4 - 18 */
  color: var(--white) !important;
  opacity: 1;
}

.banner-area.shadow.dark.banner-style-five .form-info h2 {
  color: var(--white);
}

.banner-style-eight h4 {
  text-transform: uppercase;
}

.banner-style-eight h1 {
  font-size: 90px;
  text-transform: capitalize;
  line-height: 1;
}

.banner-style-nine h1 {
  font-size: 80px;
}

.banner-area.banner-style-nine .form-box h2 {
  font-size: 32px;
  font-weight: 700;
}

.banner-area.banner-style-nine .form-box button {
  padding: 15px;
  text-transform: none;
  width: 100%;
}

/* Mooving Animation */

@-webkit-keyframes moving {
    0% {
    -webkit-transform: translate(0px,  0px);
    transform: translate(0px,  0px);
    }
    20% {
        -webkit-transform: translate(0px,  -30px);
        transform: translate(0px,  -30px);
    }
    50% {
        -webkit-transform: translate(-50px,  -30px);
        transform: translate(-50px,  -30px);
    }
    70% {
        -webkit-transform: translate(-50px,  0px);
        transform: translate(-50px,  0px);
    }
    100% {
        -webkit-transform: translate(0px,  0px);
        transform: translate(0px,  0px);
    }

}

@keyframes moving {
  0% {
      -webkit-transform: translate(0px,  0px);
      transform: translate(0px,  0px);
  }
  20% {
      -webkit-transform: translate(0px,  -30px);
      transform: translate(0px,  -30px);
  }
  50% {
      -webkit-transform: translate(-50px,  -30px);
      transform: translate(-50px,  -30px);
  }
  70% {
      -webkit-transform: translate(-50px,  0px);
      transform: translate(-50px,  0px);
  }
  100% {
      -webkit-transform: translate(0px,  0px);
      transform: translate(0px,  0px);
  }

}





/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/

.banner_test{
    float: left;
    margin-left: 80px;
    
    /* margin-top: 150px; */
}
.banner_test .btn{
    font-size: 18px;
    padding: 20px 40px;
    margin-left: 10px;
    float: left;
    margin-top:200px;

}
.banner_test h1{
    font-size: 32px;
    float: left;
}
.banner_test p{
    font-size: 16px;
    float: left;
}

.banner_test {
    margin-top: 100px;
    float: left;
}
.form-tittle {
    width: 60%;
}
/* form {
    background: rgba(0, 0, 0, 0.5);
    width: 80%;
    float: right;
    margin-right: 100px;
   
    text-align: center;

} */

@media (max-width: 999px) {
    .banner-area.text-small.banner-style-two .content h1 {
        font-size: 45px;
        line-height: 1.1;
        text-transform: none;
       
      }
    .banner_test{
        margin-top: 0px;
    }
    /* .banner_test a{
        font-size: 14px;
        padding: 15px 30px;
        margin-left: 10px;
        margin-bottom: 100px;
    } */
    .banner_test{
        margin-top: 50px;
    }
    .banner_test .btn{
        margin-top: 20px;
    }
    /* .form-tittle{
        float: right;
    } */
    /* .form-tittle .title h2{
        font-size: 22px;
        text-align: center;
    } */

   
}
@media (max-width: 768px) {
    .banner-area.text-small.banner-style-two .content h1 {
        font-size: 35px;
        line-height: 1.1;
        text-transform: none;
      }
    .banner-area.text-small.banner-style-two .content p{
        font-size: 16px;
    }
    .banner_test .btn{
        font-size: 14px;
        padding: 15px 25px;
        margin-left: 0px;
        float: left;
    }
    .banner_test{
        margin-top: -70px;
        margin-left: 30px;
    }
    .banner_test .btn{
        margin-top: 20px;
        font-size: 14px;
    }
    /* .form-tittle {
        width: 100%;
        margin-top: -50px;
        margin-right: 20px;
    } */
    /* form {
        background: rgba(0, 0, 0, 0.5);
        float: right;
        margin-right: 20px;
        margin-top: 20px;
        text-align: center;
        padding: 15px;
    } */
   
}






/*** About Start ***/
/* .about{

} */

/* @media (max-width: 999px) {
    .about{
        height: 150vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    
    }
    .about-img img{
        width:  700px;
        height: 400px;
        
    }
    .about-heading{
        font-size: 35px;
        text-align: center;

    }
} */

/* @media (max-width: 768px) {
    .about{
        height: 250vh;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    
    }
    .about-img img{
        width: 500px;
        height: 500px;
        margin-top:20px;
    }
    .about-heading{
        font-size: 25px;
    }
} */
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-danger);
    
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-danger) !important;
}
/*** About End ***/




/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-danger) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-danger) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-danger);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-danger);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-danger);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-danger);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-danger);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-danger) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-danger);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-danger);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-danger);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-danger);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-danger) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-danger);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-danger) !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-danger);
    background: var(--bs-light);
    z-index: 9;
}
.day-aravali{
    position: relative;
   
}

.fa-play-circle {
    font-size: 50px;
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 50%;
    right: 0;
}


/* .guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
} */

/* .guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
} */

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-danger) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-danger); 
    border-style: dotted;
    border-radius: 50%;
}

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

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-danger);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-danger);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-danger);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-danger);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-danger);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-danger);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-danger) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-danger);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-danger) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
    font-size: 14px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-danger);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/