@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Share+Tech&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

:root{
    --blue : #4671a7;
    --red : #d6333c;
}

.theme-text-red{
    color: var(--red);
}
.theme-text-blue{
    color: var(--blue);
}
.fs-7{
    font-size: 14px;
}
.error{
    color: var(--red);
    font-size: 13px;
}

.section-heading-sm {
    font-size: 1.2rem;
    color: var(--blue);
    letter-spacing: 2px;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
}

.section-heading-lg {
    font-size: 3rem;
    color: #000;
    font-weight: 700;
    font-family: "Share Tech", sans-serif;
}

.theme-btn{
    background-color: var(--red);
    color: #fff;
    padding: 12px 24px;
    transition: all 0.3s ease-in;
    border-radius: 0.5rem;
    border-color: var(--red);
    outline: none;
}
.theme-btn:hover{
    background-color: #fff;
    color : var(--red);
}


.info-card{
    position: relative;
    /* border: 1px solid rgba(0, 0, 0, 0.2); */
    border-radius: 0.5rem;
    transition: all 0.3s ease-in;
    overflow: hidden;
}
.info-card-heading{
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--blue);
}
.bg-icon{
    position: absolute;
    right: -50px;
    bottom: 20px;
    transition: all 0.3s ease-in;
    opacity: 0;

}
.bg-icon i{
    font-size: 60px;
    color: var(--blue);
}
.info-card:hover{
    color: var(--blue);
}
.info-card:hover .bg-icon{
    right: 50px;
    opacity: 0.3;
}

.banner{
    position: relative;
}
.banner-overlay{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.banner-overlay h2{
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}
.banner-overlay span{
    font-size: 15px;
    color: var(--blue);
}

/* .about{
    background-color: #f7f7f8;
} */



.about ul li{
    padding: 0.3rem 0rem;
}
.why-choose{
    margin-top: -100px;
}
.why-choose-wrapper{
    background-color: var(--blue);

}
.counter-wrapper{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
.counter-item{
    padding: 4rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in;
    width: 100%;
}
.counter-item:hover{
    border-bottom: 1px solid var(--red);
}
.counter-item span{
    font-size: 4rem;
}
.counter-item .divider{
    width: 50px;
    border: 4px dotted var(--red);
    margin: 1rem 0rem;
}
.counter-item p{
    font-size: 1.5rem;
}

.why-choose-text{
    color: #fff;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}

.service-box{
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    min-height: 335px;
}
.service-box img{
    object-fit: cover;
    width : 100%;
}
.overlay{
    height: 250px;
    max-height: 100%;
    width: 100%;
    content: "";
    bottom: 0;
    background: linear-gradient(0deg, #14225c, hsla(0, 0%, 100%, 0));
    position: absolute;
    display: flex;
    align-items: center;
}
.overlay-text{
    display: flex;
    flex-direction: column;
}
.overlay-text i{
    font-size: 48px;
}
.service-hover-box{
    position: absolute;
    bottom:-100%;
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease-in;
    
}
.service-box:hover .service-hover-box{
    bottom: 20px;
}
.service-img{
    transition: all 0.3s ease-in;
}
.service-box:hover .service-img{
    transform: scale(1.1);
}

.experience{
    background: url('../../../images/banner.jpg');
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    padding: 0rem 3rem;
}
.play-btn{
    height: 80px;
    width:  80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
}
.play-btn i{
    color: var(--red);
    font-size: 2rem;
}


.footer {
    background-color: #1a1c20;
    padding: 3rem 2rem;
}

.footer-logo {
    margin-right: 120px;
}

.footer-logo img {
    width: 300px;
    vertical-align: middle;
    display: inline-block;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1.8rem;
}

.footer-list {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    cursor: pointer;
}

.footer-icon {
    font-size: 1.5rem;
    color: var(--blue);
}

.footer-text {
    color: #fff;
    margin-left: 1rem;
    transition: 0.3s ease-in all;
}

.footer-text:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-links {
    list-style-type: none;
    padding: 0;
    margin-top: 1rem;
}
.footer-links li{
    padding: 0.5rem 0rem;
}
.footer-links li a{
    font-size: 1rem;
    font-weight: 500;
    color: gray;
    transition: all 0.3s ease-in;
}
.footer-links li a:hover{
    color: #fff;
}

.social-icon-box {
    margin-top: 30px;
    display: flex;
    /* justify-content: flex-start; */
    height: 100%;
}
.social-icon-box a{
    color: #000;
}

.social-icon {
    margin-right: 10px;
    border: 1px solid var(--blue);
    height: 42px;
    width: 42px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s ease-in all;
}

.social-icon:hover {
    color: var(--red);
    margin-top: -10px;
}


/* about page styling */

.about-service-content {
    margin-top: 120px;
}

.paralax {
    background-image: url('../../../images/banner.jpg');
    height: 500px;

    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.upper-section{
    padding: 3rem;
    text-align: center;
}
.bg-overlay{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000;
    opacity: 0.6;
}
.lower-section{
    position: relative;
}
.about-card{
    background-color: #000;
    padding: 3rem;
    color: #fff;
    margin: 2rem;
}


.team-card-header{
    border-radius: 1rem;
    overflow: hidden;
}
.team-card-header img{
    object-fit: cover;
}
.team-card-body{
    margin-top: 1rem;
}
.team-card-body h4{
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0px;
}
.team-card-body span{
    color: var(--blue);
    font-size: 14px;
}
.team-card-body p{
    margin-top: 1rem;
    font-size: 14px;
    color: #000;
}

/* contact page styling start */
.contact{
    text-align: center;
}
.contact-card{
    border: 1px solid #999;
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in all;
}
.contact-card:hover{
    border: 1px solid var(--red);
}
.contact-card-items{
    text-align: center;
}
.contact-icon{
    font-size: 2.5rem;
    color: var(--red);
}
.contact-card-heading{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: #000;
}
.contact-card-text{
    color: #000;
}
.map{
    margin-top: 400px;
    height: 700px;
    position: relative;
}
.contact-card-form{
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 600px;
    background-color: #fff;
    padding: 3rem;
    position: absolute;
    top: -200px;
    right: 50px;
    z-index: 100;
}
.theme-form-dark{
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #999;
    width: 100%;
}
.gallary-img-wrapper{
    margin: 0.5rem 0rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in;
}
.gallary-img{
    transition: all 0.3s ease-in;
}
.gallary-img:hover{
    transform: scale(1.1);
}
/* contact page styling end */


/* gallary page styling */
 #gallery {
	 padding-top: 40px;
}
 @media screen and (min-width: 991px) {
	 #gallery {
		 padding: 60px 30px 0 30px;
	}
}
 .img-wrapper {
	 position: relative;
	 margin-top: 15px;
}
 .img-wrapper img {
	 width: 100%;
}
 .img-overlay {
	 background: rgba(0, 0, 0, 0.7);
	 width: 100%;
	 height: 100%;
	 position: absolute;
	 top: 0;
	 left: 0;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 opacity: 0;
}
 .img-overlay i {
	 color: #fff;
	 font-size: 3em;
}
 #overlay {
	 background: rgba(0, 0, 0, 0.7);
	 width: 100%;
	 height: 100%;
	 position: fixed;
	 top: 0;
	 left: 0;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 z-index: 999;
	 -webkit-user-select: none;
	 -moz-user-select: none;
	 -ms-user-select: none;
	 user-select: none;
}
 #overlay img {
	 margin: 0;
	 width: 80%;
	 height: auto;
	 object-fit: contain;
	 padding: 5%;
}
 @media screen and (min-width: 768px) {
	 #overlay img {
		 width: 60%;
	}
}
 @media screen and (min-width: 1200px) {
	 #overlay img {
		 width: 50%;
	}
}
 #nextButton {
	 color: #fff;
	 font-size: 2em;
	 transition: opacity 0.8s;
}
 #nextButton:hover {
	 opacity: 0.7;
}
 @media screen and (min-width: 768px) {
	 #nextButton {
		 font-size: 3em;
	}
}
 #prevButton {
	 color: #fff;
	 font-size: 2em;
	 transition: opacity 0.8s;
}
 #prevButton:hover {
	 opacity: 0.7;
}
 @media screen and (min-width: 768px) {
	 #prevButton {
		 font-size: 3em;
	}
}
 #exitButton {
	 color: #fff;
	 font-size: 2em;
	 transition: opacity 0.8s;
	 position: absolute;
	 top: 15px;
	 right: 15px;
}
 #exitButton:hover {
	 opacity: 0.7;
}
 @media screen and (min-width: 768px) {
	 #exitButton {
		 font-size: 3em;
	}
}

.tour-image{
    position: relative;
}

.cross-shadow-ribbon {
    position: absolute;
    background: #d6333c;
    top: -15px;
    padding: 10px;
    margin-left: 25px;
    color: #FFF;
    border-radius: 0 0 2px 2px;
  }
  /*.cross-shadow-ribbon:before {*/
  /*  content: "";*/
  /*  position: absolute;*/
  /*  left: -15px;*/
  /*  right: 0;*/
  /*  top: 1px;*/
  /*  bottom: 0;*/
  /*  width: 0;*/
  /*  height: 0;*/
  /*  border-bottom: 15px solid #A42F25;*/
  /*  border-left: 15px solid transparent;*/
  /*}*/
 