/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}
 

/*** 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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


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

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

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

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

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

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


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    /*color: var(--light) !important;*/
    color: var(--dark) !important; 
    outline: none;
    transition: .5s;
}

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

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

.navbar-light .navbar-brand h1 {
    /*color: #FFFFFF;*/
    color: var(--dark);
}

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

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

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

    .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;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
       /* color: var(--primary);*/
        color: var(--dark);
		
        font-size: 20px;
    }
 

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

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

    .sticky-top.navbar-light .navbar-brand h1 {
       /* color: var(--primary);*/
        color: var(--dark);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
   
   /** padding: 18rem 0;**/
    padding: 3rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
	
    overflow: hidden;
    transition: .5s;


}
#ourservices .service-item{
height: 360px;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    /*background: var(--primary);*/
    background: var(--light);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: var(--dark);
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--dark);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
	height: 179px; 
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #08153f;
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: #f6b945;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

/*** Partner***/
.partner-carousel .testimonial-item {
    
}

.partner-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.partner-carousel .owl-nav .owl-prev,
.partner-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.partner-carousel .owl-nav .owl-prev:hover,
.partner-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.partner-carousel .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled{
display:flex;
}
.partner-carousel .testimonial-item {
	margin-right:0px !important;
	border:1px solid grey !important;
position:relative;
}

.partner-carousel .testimonial-item {
    padding: 10px;
    height: 180px;
}

/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
   
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--dark);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color:var(--dark);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

.img-fluid1 {
    max-width: 50% !important;
    height: auto;
	margin-left: 25%; 
}
.bg-primary {
   /* background-color: #7dc389fa !important;*/
    background-color: #FFFFFF !important;
    /*background-color: #22a9cc !important;*/
}
.text-white {
    color: var(--dark) !important;
}
.btn-primary {
    color: var(--dark) !important;
    background-color: #f6b945;
    border-color: #f6b945;
}
i.bi.bi-arrow-up {
    color: #07153e;
    font-weight: bold;
}
.btn-secondary {
    color: #000;
    background-color: #f6b945 !important;
    border-color: #f6b945 !important;
} 
.text-light {
    color: var(--dark) !important;
}
.text-justify {
    text-align: justify !important;
}
.text-left {
    text-align: left !important;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: Eras Demi ITC !important;
}
.text-primary {
    color: #fba504!important;
}
.service-item.top{
height:250px;
}

/* 
---------------------------------------------
Video
--------------------------------------------- 
*/

.our-videos .videos-left-dec img {
  width: 220px;
  height: 471px;
  left: 0;
  top: 120px;
  position: absolute;
}

.our-videos .videos-right-dec img {
  width: 730px;
  height: 523px;
  right: 0;
  top: 45px;
  position: absolute;
}

.our-videos {
  position: relative;
 
  margin-top: 0px;
}

.our-videos .naccs {
  position: relative;
}

.our-videos .naccs .menu div {
  /*margin-bottom: 30px;*/
  margin-bottom: 10px !important;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.our-videos .naccs .menu div {
  transition: all 0.3s;
}

.our-videos .naccs .menu div.active .thumb .inner-content {
  text-align: center;
  width: 100%;
  height: 100%;
  border-radius: 23px;
}

.our-videos .naccs .menu div.active .thumb .inner-content h4 {
  top: 40%;
  transform: translateY(-55%);
  position: relative;
}

.our-videos .naccs .menu div.active .thumb .inner-content span {
  display: block;
  position: relative;
  top: 55%;
  transform: translateY(-55%);
}

.our-videos ul.nacc {
  position: relative;
  min-height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.our-videos ul.nacc li {
  opacity: 0;
  transform: translateX(-50px);
  position: absolute;
  list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.our-videos ul.nacc li.active {
  transition-delay: 0.3s;
  position: relative;
  z-index: 2;
  opacity: 1;
  transform: translateX(0px);
}

.our-videos ul.nacc li {
  width: 100%;
}

.our-videos .nacc .thumb {
  position: relative;
  border-radius: 23px;
}

.our-videos .nacc .thumb iframe {
  border-radius: 23px;
  height: 675px;
}

.our-videos .nacc .thumb .overlay-effect {
  background: rgb(255,104,95);
  background: linear-gradient(105deg, rgba(245,190,87,255) 0%, rgba(251,165,4,1) 100%);
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 23px;
  border-bottom-right-radius: 23px;
  padding: 35px 30px;
  text-align: center;
}

.our-videos .nacc .thumb .overlay-effect h4 {
  font-size: 20px;
  margin-top: 5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.our-videos .nacc .thumb .overlay-effect span {
  font-size: 15px;
  color: #fff;
}

.our-videos .menu .thumb {
  position: relative;
}

.our-videos .menu .thumb .inner-content {
  background: rgb(255,104,95);
  background: linear-gradient(105deg, rgba(245,190,87,255) 0%, rgba(251,165,4,1) 100%);
  border-top-left-radius: 23px;
  border-bottom-right-radius: 23px;
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px 30px;
  transition: all 0.3s;
}

.our-videos .menu .thumb .inner-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s;
}

.our-videos .menu .thumb .inner-content span {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  display: none;
  transition: all 0.3s;
}
.thumb img{
    width: 100%;
	    height: 105px;
    overflow: hidden;
}

.slick-wrapper {
	 width: 80%;
	
}
 .slide-item {
	 
	 display: flex !important;
	 justify-content: center;
	 align-items: center;
	 text-align: center;
	 height: 200px;
	 border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;

}
.slick-list.draggable{
border:1px solid #eee;
}
 .slide-item h3 {
	 font-family: Lato, sans-serif;
	 font-size: 40px;
}
.slick-slide img {
    display: block;
    width: 100%;
    padding: 10px;
}
i.fa.fa-arrow-left.slick-arrow {
    position: absolute;
    top: 187px;
    left: -77px;
cursor:pointer;
font-size:30px;
} 
i.fa.fa-arrow-right.slick-arrow {
    position: absolute;
    right: -51px;
    top: 187px;
cursor:pointer;
font-size:30px;
}
button.slick-arrow {
    border: none;
}
.logosubtext {
    font-size: 10px;
    position: absolute;
    bottom: 0;
    left: 19px;
color:#07153f;
text-decoration:underline;
font-weight:bold;
}


[class^="bi-"]::before, [class*=" bi-"]::before{
    font-weight: bold !important;
}

    /*loader thx:https://codepen.io/aurer*/

/*gallery*/
 .gallery-wrapper {
     position: relative;
     z-index: 1;
}
 .gallery-wrapper .content {
     position: relative;
     overflow: hidden;
     width: 100%;
     /*height: 100vh;*/
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     padding: 3vh 0;
     /*background: #101014;
     background: linear-gradient(to left, #19191f, #101014);*/
}
 .gallery-wrapper .content .gallery.full {
     position: relative;
     display: flex;
     align-items: center;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper {
     display: flex;
     height: 55vh;
     align-items: center;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide {
     position: relative;
     height: 50vh;
     transition: all 0.4s ease-out;
     box-sizing: border-box;
     width: auto;
     opacity: 0.25;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev, .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
     width: 20% !important;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
     height: 55vh;
     width: 60% !important;
     opacity: 1;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active:hover .zoom {
     opacity: 1;
     pointer-events: auto;
     visibility: visible;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image {
     width: 100%;
     height: 100%;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay {
     position: absolute;
     left: 0;
     bottom: 0;
     z-index: 2;
     width: 100%;
     height: auto;
     padding: 50px 50px 30px 50px;
     background: #000;
     background: linear-gradient(0deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, 0) 100%);
     display: flex;
     align-items: center;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease-out;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show {
     opacity: 1;
     visibility: visible;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show .text-wrap {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap {
     display: flex;
     flex-direction: column;
     max-width: 600px;
     opacity: 0;
     visibility: hidden;
     transform: translateY(50px);
     transition: all 0.4s linear;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
     font-size: 2.2em;
     font-weight: 700;
}
 .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .caption p {
     font-size: 1.16em;
     color: #fff;
     line-height: 1.7;
}
 .gallery-wrapper .content .gallery.full .swiper-next-button, .gallery-wrapper .content .gallery.full .swiper-prev-button {
     position: absolute;
     z-index: 99;
     outline: none;
     transition: all 0.2s linear;
     width: 20%;
     height: 50vh;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     cursor: pointer;
}
 .gallery-wrapper .content .gallery.full .swiper-next-button.swiper-button-disabled, .gallery-wrapper .content .gallery.full .swiper-prev-button.swiper-button-disabled {
     opacity: 0.2;
}
 .gallery-wrapper .content .gallery.full .swiper-next-button em, .gallery-wrapper .content .gallery.full .swiper-prev-button em {
     font-size: 68px;
}
 .gallery-wrapper .content .gallery.full .swiper-next-button {
     right: 0;
     padding-left: 5vw;
     justify-content: flex-start;
}
 .gallery-wrapper .content .gallery.full .swiper-prev-button {
     left: 0;
     padding-right: 5vw;
}
 .gallery-wrapper .content .gallery.thumb {
     position: relative;
     width: 100%;
     max-width: 1020px;
     margin: 0 auto;
     display: flex;
     align-items: center;
     padding-left: 12px;
     padding-top: 10px;
}
 .gallery-wrapper .content .gallery.thumb .swiper-container {
     width: 100%;
}
 .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
     position: relative;
     height: 10vh;
     box-sizing: border-box;
     cursor: pointer;
}
 .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .image {
     box-shadow: inset 0px 0px 0px 2px #ed1b28;
     padding: 2px;
}
 .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-thumb-active .image .overlay {
     opacity: 1;
}
 .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image {
     width: 100%;
     height: 100%;
     position: relative;
}
 .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image img {
     width: 100%;
     height: 100%;
     display: block;
     object-fit: cover;
}
 .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide .image .overlay {
     position: absolute;
     left: 2px;
     top: 2px;
     background-color: rgba(43, 44, 54, .6);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     width: calc(100% - 4px);
     height: calc(100% - 4px);
     opacity: 0;
     transition: all 0.2s linear;
}
 .gallery-wrapper .content .gallery.thumb .swiper-next-button {
     right: -15px;
}
 .gallery-wrapper .content .gallery.thumb .swiper-prev-button {
     left: -5px;
}
 .gallery-wrapper .content .gallery.thumb .swiper-prev-button em {
     transform: rotate(180deg);
}
 .gallery-wrapper .content .gallery.thumb .swiper-next-button, .gallery-wrapper .content .gallery.thumb .swiper-prev-button {
     position: absolute;
     z-index: 99;
     outline: none;
     transition: all 0.2s linear;
     width: 32px;
     height: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     /*background-color: #ed1b28;*/
     cursor: pointer;
}
 .gallery-wrapper .content .gallery.thumb .swiper-next-button:hover, .gallery-wrapper .content .gallery.thumb .swiper-prev-button:hover {
     /*background-color: #c5101b;*/
}
 .gallery-wrapper .content .gallery.thumb .swiper-next-button.swiper-button-disabled, .gallery-wrapper .content .gallery.thumb .swiper-prev-button.swiper-button-disabled {
     /*opacity: 0.2;*/
}
/*signature*/
 .signature {
     position: absolute;
     z-index: 2;
     right: 0;
     bottom: 0;
     padding: 20px;
}
 .signature h3 {
     font-weight: 600;
     font-size: 0.926em;
     color: #ed1b28;
     display: flex;
     margin-bottom: 5px;
}
 .signature a, .signature em {
     text-decoration: none;
     color: #777;
     margin-right: 5px;
     font-size: 0.88em;
     transition: all 0.2s linear;
}
 .signature a:hover, .signature em:hover {
     color: #aaa;
}
/*Mobile*/
 @media only screen and (max-width: 1024px) {
     .gallery-wrapper .content {
         padding: 5vh 0;
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper {
         height: 70vh;
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide {
         height: 50vh;
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev, .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
         width: 10% !important;
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
         height: 70vh;
         width: 80% !important;
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay {
         padding: 20px;
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap {
         transform: translateY(0);
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
         font-size: 1.6em;
    }
     .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .caption p {
         font-size: 1.06em;
    }
     .gallery-wrapper .content .gallery.full .swiper-next-button, .gallery-wrapper .content .gallery.full .swiper-prev-button {
         width: 10%;
         height: 50vh;
         align-items: center;
         justify-content: center;
    }
     .gallery-wrapper .content .gallery.full .swiper-next-button em, .gallery-wrapper .content .gallery.full .swiper-prev-button em {
         font-size: 45px;
    }
     .gallery-wrapper .content .gallery.full .swiper-next-button {
         padding-left: 0;
    }
     .gallery-wrapper .content .gallery.full .swiper-prev-button {
         padding-right: 0;
    }
     .gallery-wrapper .content .gallery.thumb {
         padding: 0 30px;
         max-width: 100%;
    }
     .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
         height: 80px;
    }
     .gallery-wrapper .content .gallery.thumb .swiper-next-button {
         right: 10px;
    }
     .gallery-wrapper .content .gallery.thumb .swiper-prev-button {
         left: 10px;
    }
     .signature {
         display: none;
    }
}
.fa-arrow-right:before {
    
    font-size: 30px;
    color: #000;
}
.fa-arrow-left:before {
    
    font-size: 30px;
    color: #000;
}
.sip-tservice{
    visibility: visible;
    animation-name: fadeInUp;
    background-color: #f3f3f3;
    border: 1px solid #e3e3e3;
        padding: 40px 50px;
            margin-left: 30px;
    margin-bottom: 30px;
}
.sip-tservice h5{
    margin-top: 20px;
    font-size: 23px;
}
.powerdesc{
    display: flex;
    margin-bottom: 20px;
}
.powerdesc p{
    margin-top: auto !important;
    margin-bottom: auto !important;
    margin-left: 10px;
    color: white !important;
}
.powerdesc p:hover{
    color: #eee;
}
.powersec h3{
    color: #fff !important;
    margin-bottom: 30px;
    font-weight: normal !important;
}
.powersec p{
    color: #fff !important;
    margin-bottom: 50px;
}