@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&display=swap');
/* @font-face{
	font-family: ;
	src: url() ;
} */
:root{
	font-size: 16px;
	--yellow : #FFBA09;
	--red : #FF002E;
	--gr1: #B51850; /*rgba(181, 24, 80, 1)*/
	--gr2:#351084; /*rgba(53, 16, 132, 1)*/
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: 'Raleway', sans-serif;
}
p{
	text-align: justify;
	text-justify: inter-word;
}
ul.numberDotNum{
	list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}
ul.numberDotNum li{
	 display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}
ul.numberDotNum li:before { 
	content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;  
}
ul.numberDotNum li ul{
	list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}
ul.numberDotNum li ul li{
   margin: 0;
}
ul.numberDotNum li ul li:before{
   content: counters(item, ".") " ";
}
ul.list-none li{
	list-style: none !important;
}
ul.number li{
	list-style-type: decimal;
	margin-bottom: 10px;
	
}
ul.numbertwo li{
	list-style-type: decimal;
	margin-left: 20px;

}
ul.smallLetter li{
	list-style-type: lower-alpha;
	margin-left: 20px;
}
ul.capitalLetter li{
	list-style-type: upper-alpha;
	margin-left: 20px;
}
ul.boldonly li{
	font-weight: bold;
	margin-left: 30px;
	list-style: none;
}
ul.tick li{
	margin-left: 20px;
	list-style: none;
}
ul.tick li:before{
	content: '✓';
}

.div10{
	position: relative;
	width: 100%;
	height: 10vh;
}
.myTable{
	width: 100%;
}
.myTable, tr, th, td{	
	border: 1px solid;
	border-image-slice: 1;
	border-image-source: linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);
	padding: 10px;
}
.mainTitle h2{
	font-size: 2.5rem;
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;

}
.mainTitle h2:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--red);
	display: block;
}
.mainTitle h2:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: var(--red);
	display: block;
}
.subTitle{
	display: flex;
    justify-content:center;
}
.subTitle p{
	width: 40%;	
	font-weight: 600;
	text-align: center;
}
body{
	font-family: 'Raleway', sans-serif;
}
header{
	position: fixed;
	width: 100%;
	background: #fff;
	z-index: 999;

}
nav{
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 10px 50px;
	align-items: center;
	transition: all 0.1s ease;
	box-sizing: border-box;
	z-index: 999;
}
nav.bgblack{
	width: 100%;
	padding: 5px 50px;
	height: 15vh;
	z-index: 999;
}
.bgblack{
	width: 100%;
	/* background: rgba(0,0,0,1); */
}
nav.bgblackinner{
	width: 100%;
	padding: 5px 50px;
	height: 10vh;
	z-index: 999;
	}
.bgblackinner{
	width: 100%;
	background: #ffffff;

}
nav .mainlogo{
	width: 10rem;
}
.bgblack .mainlogo{
	width: 6rem;
}
nav .mainlogo img{
	width: 100%;
	
}
.nav ul{
	display: flex;
	position: relative;
	margin-bottom: 0;
}
.nav ul li{
	position: relative;
	list-style: none;
	padding: 10px 20px;

}
.nav ul li a{
	text-decoration: none;
	display: flex; 
	color: #000;
	font-size: 1rem;
	font-weight: 600;
	position: relative;
	padding: 5px 0;
}
.nav ul li a:hover{
	color: var(--yellow);
}
.nav ul li a.active{
	color: var(--yellow);
}

.havesubmneu i{
	padding-left: 10px;
	color: var(--yellow);
	font-size: 1.5rem;
	
}
nav.bgblackinner ul li .subMenu{
	background: rgba(0, 0, 0, 0.7);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(0, 0, 0, 0.7);

}
nav.bgblack ul li .subMenu{
	background: rgba(0, 0, 0, 0.7);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(0, 0, 0, 0.7);

}
.nav ul li .subMenu{
	position: absolute;
	width: 210px;
	transform: translateY(50px);
	/*background: #fff;*/
	color: #000;
	opacity: 0;
	visibility: hidden;
	display: block;
	transition: all 0.5s ease;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav ul li .subMenu li{
	padding: 5px 15px;

}
.nav ul li .subMenu li a{
	color: #fff;
	font-size: .89rem;
	font-weight: 500;
	padding: 5px 0;
	transition: all .2s ease;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav ul li .subMenu li a.last-child{
	border-bottom: none;
}
.nav ul li .subMenu li a:hover{
	color: var(--yellow);
	font-weight: 600;
	transform: translateX(5px);
}
.toggler{
	width: 40px;
	height: 40px;
	position: relative;
	/*border: 1px solid #fff;*/
	cursor: pointer;
	display: none;
}
.toggler span{
	position: relative;
	top: 50%;
	width: 100%;
	height: 2px;
	background: var(--yellow);
	display: flex;
	align-items: center;

}
.toggler span:before{
	content: '';
	position: absolute;
	top: -10px;
	width: 100%;
	height: 2px;
	background: var(--yellow);
}
.toggler span:after{
	content: '';
	position: absolute;
	top: 10px;
	width: 100%;
	height: 2px;
	background: var(--yellow);
}



/*---------------------------------- home page ----------------------------------- */
#mainHeader{
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);
	background-size: cover;
	position: relative;
}
/*#mainHeader:before{
	position: absolute;
	content: '';
	width: 100%;
	height: 100vh;
	background: url('../images/banner2.jpg');
	background-size: cover;	
	mix-blend-mode: multiply;
}*/
#mainHeader .mainHeader{
	width: 100%;
	height: 100vh;
}
#mainHeader .mainHeader #carouselExampleIndicators{
	width: 100%;
	height: 100vh;
}
.carousel-item .carouselImg{
	position: absolute;
	content: '';
	width: 100%;
	height: 100vh;
	background: linear-gradient(129.63deg, rgba(53, 16, 132,0.7) 16.75%, rgba(181, 24, 80,0.5) 72.65%);
	background-size: cover;	
	mix-blend-mode: multiply;
    /*backdrop-filter: blur(10px);*/
}
.carousel-item > .carouselImg > img{
	mix-blend-mode: multiply;
	position: relative;	
   filter: blur(2px);
   height: 100%;	
}
#mainHeader .mainHeader #carouselExampleIndicators .carousel-inner{
	width: 100%;
	height: 100vh;
}
.carousel-caption {
	width: 50%;
    position: absolute;
    /* right: 0; */
    top: 60%;
    transform: translateY(-50%);
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: left;
}
.carousel-caption h2{
	font-size: 3.5rem;
	font-weight: 600;
	color: #fff;
}
.carousel-caption h2 span{
	color: var(--yellow);
}
.carouselImgRight{
	width: 50%;
	height: 100vh;
	position: absolute;
	top: 0;
	right: 50px;
	z-index: 9999;
}
.carouselImgRight img{
	width: 70%;
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	right: 50px;

}
.closenav{
	width: 30px;
	height: 30px;
	cursor: pointer;
	position: relative;
	left: 85%;
	top: 5px;
	display: none;
}
.closenav i{
	font-size: 2rem;
	color: #fff;
}

.carousel-indicators {
    position: absolute;
    top: 50%;
    right: 0 !important;
    left: 80%;
    bottom: 10px;    
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    padding-left: 0;  
    list-style: none;
}
.carousel-indicators li{
	margin: 10px 0;
	width: 15px;
	height: 15px;
	border-radius: 50%;
}
.carousel-indicators li.active{
	background-color: var(--yellow);
}



#ourServices{
	width: 100%;
	padding: 30px 0;
	position: relative;
}
#ourServices .rightImg{
	position: relative;
}
#ourServices .rightImg img{
	position: absolute;
	right: 0;
	top: 0;
	width: 20%;
}
#ourServices .leftImg{
	position: relative;
}
#ourServices .leftImg img{
	position: absolute;
	left: 0;
	top: -70px;
	width: 20%;
	z-index: -1;
}
.tileBoxwrapper{
	max-width: 1050px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	grid-gap: 30px;
}
.tileBox{
	padding: 10px 0;
	color: #fff;
	height: 240px;
	background: #30353a;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 99;
}
.tileBox .tileupperIcon{
	width: 75px;
	height: 75px;
	background: #272b30;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.tileBox .tileupperIcon i{
	z-index: 99;
	font-size: 2rem;
	color: #000;
}
.tileBox .tileupperIcon .flow{
	position: absolute;
	border-radius: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255,0.3);
	animation: flow 3s linear infinite;
}
.tileBox .tileupperIcon .flowtwo{
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255,0.2);
	animation: flowtwo 3s linear infinite;
	animation-delay: 1s;
}
.tileBox .tileupperIcon .flowthree{
	content: '';
	position: absolute;
	border-radius: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255,0.1);
	animation: flowthree 3s linear infinite;
	animation-delay: 2s;
}
@keyframes flow{
	0%{
		width: 0;
	height: 0;
	}
	100%{
		width: 75px;
	height: 75px;

	}
}
@keyframes flowtwo{
	0%{
		width: 0;
	height: 0;
	}
	100%{
		width: 75px;
	height: 75px;

	}
}
@keyframes flowthree{
	0%{
		width: 0;
	height: 0;
	}
	100%{
		width: 75px;
	height: 75px;

	}
}

.tileBox .tilecontent{
	padding: 0 20px;

}
.tileBox .tilecontent h2{
	font-weight: 600;
	
}
.tileBox .tilecontent h2 span{
	color: var(--yellow);
	
}
.tileBox .tileButton{
	position: absolute;
	bottom: 0;
	/*padding: 10px 0;*/
}
.tileBox .tileButton a{
	padding: 10px 20px;
	background: var(--yellow);
	color: #000;
	text-decoration: none;
	border-radius: 5px;
	border: 2px solid var(--yellow);
	font-weight: 600;
}
.tileBox .tileButton a:hover{
	background: transparent;
	color: var(--yellow);
}
.tileBox .tilecontent p{
	font-size: .8rem;
}
.tilebottomIcon{
	position: absolute;
	bottom: 10px;
	width: 150px;
	opacity: 0.1;
}
.tilebottomIcon img{
	width: 100%;
}



#aboutIntersat{
	width: 100%;
	background: #ebedf0;
	padding: 50px 0;
}
.imgLeft{
	width: 100%;
	padding: 0 10px;
	border : 2px solid linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);	
}
.imgLeft img{
	width: 100%;
	border : 5px solid;
	border-image-slice: 1;
	border-image-source:  linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);	
}
.contentRight{
	padding: 20px 40px;
}
.contentRight h3{
	font-weight: 600;
	font-size: 1.9rem;
}
.contentRight p{
	padding: 10px 0;
}


#outSupportTeam{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.supportBoxs{
	/*max-width: 1150px;*/
	padding: 50px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	/*grid-template-columns: 1fr 1fr 1fr;*/
	grid-gap: 40px;	
}

.sBox{
	background: #fff;
	border: 5px solid transparent;
	padding: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);
	border-radius: 20px;
	position: relative;
	background-clip: padding-box;
	box-sizing: border-box;
}
.sBox:before{
	content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: -1;
    margin: -5px; /* !importanté */
    border-radius: 20px; /* !importanté */
    background: linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);	  
}
.sBox .sImage{
	width: 100%;	
}
.sBox .sImage img{
	width: 100%;
	border-radius: 20px;	
}
.sContent{
	padding: 10px;
}
.sContent p{
	text-align: center;
	text-justify:auto;
}


#metrics{
	width: 100%;
	background: linear-gradient(180deg, #B51850 0%, #351084 100%);
	position: relative;
	height: 225px;
}
.matricsWrapper{
	content: '';
	position: absolute;
	width: 100%;
	height: 225px;	
	background: url("../images/image1.jpeg");
	opacity: 0.3;
	background-size: cover;
	mix-blend-mode: multiply;	
}
 .metrixBoxes{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;

}
 .metrixBoxes .mBox{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	mix-blend-mode: normal;
	z-index: 99;
}
 .metrixBoxes .mBox h4{
	font-size: 4rem;
	color: #fff;
	font-weight: 600;
}
 .metrixBoxes .mBox h5{
	font-size: 1rem;
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--yellow);
	font-weight: 600;
}



.testimonialWrapper{
	width: 100%;
	padding: 10px 0;
	position: relative;
}
.testiGradient{
	position: absolute;
	top:60%;
	width: 100%;
	height: 225px;
	background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #D9D9D9 100%);
}
.testiBoxes{
	padding: 10px 0;
}

.testiBox{
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px 15px;
	background: #FFFFFF;
	box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.25);
	border-radius: 9px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	height: 380px;
	justify-content: space-around;
}
.testiBox .testiBoxContent p{
	font-size: .9rem;
	text-align: center;
	line-height: 1rem;
	text-align: justify;
    text-justify: inter-word;
}
.testiBoxImage{
	padding: 10px 0;
	display: none;

}
.testiBoxImage .testiImageWrapper{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 2px solid #B51850;
}
.testiBoxTitle{
	text-align: center;
}
.testiBoxTitle h6{
	font-weight: 600;
	font-size: 1rem;
}
.testiBoxTitle p{
	font-size: .8rem;
	text-align: center;
	padding: 0 15px;
	line-height: .8rem;
}
.yellowButton{
	width: 100%;
	z-index: 999;
	display: flex;
	justify-content: center;
}
.yellowButton a{
	padding: 10px 20px;
	background: var(--yellow);
	color: #000;
	z-index: 99;
	text-decoration: none;
	border-radius: 20px;
}
.yellowButton a:hover{
	background: #020338;
	color: #fff;
}


.owl-dots{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.owl-dots button.owl-dot {
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background: #ccc;
	margin-right: 10px;

}
.owl-dots button.owl-dot.active{
	background: var(--yellow);
}
.owl-nav{
	display: none;
}




#partnerSlider{
	width: 100%;
	padding: 50px 0;

}
.partnerWrapper{
	width: 100%;
}
.PartnerBoxes{
	width: 100%;
	padding: 20px 0;
	/*display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
	/*grid-row-gap: 30px;*/
	display: flex;
	flex-wrap: wrap;
	gap: 20px;

}
.partnerBox{
	margin: auto;
	width: 200px;
	height: 80px;
	background: #FDFBFB;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	border-radius: 13px;
	padding: 10px;	
}
.partnerBox img{
	width: 100%;
	height: 100%;
}
.partner-carousel{
	position: relative;
	display: block;
	width: 100%;
}


footer{
	width: 100%;
	padding: 50px 0;
	background: #DDE4F2;
	/*background: #30353a;*/
}

.footerRow:nth-child(3){
	padding: 20px 0;
}
.footerLogo{
	width: 100%;
}
.footerLogo img{
	width: 50%;
}
footer p{
	font-size: .9rem;
	font-weight: 500;
	color: #000;
}
.footerLinks ul li{
	list-style: none;
	padding: 5px 0;
}
.footerLinks ul li a{
	text-decoration: none;
	color: #3d3d3d;
	font-weight: 600;
}
.footerTitle h3{
	font-size: 1.5rem;
	font-weight: 700;
	padding: 10px 0;
}
.footerCon{
	display: flex;
    color: #3d3d3d;
}
.footerCon i{
	margin-top: 5px;
	margin-right: 10px;
	color: #B51850;
	font-size: 1.2rem;
}
.footerCon p a{
	text-decoration: none;
	color: #3d3d3d;
}
.whatsappIcon{
	position: fixed;
	bottom: 60px;
    right: 10px;
	width: 50px;
	height: 50px;
	background:#25D366;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;	
}
.whatsappIcon i{
	color: #fff;
	font-size: 2rem;
}
.scrollTop{
	position: fixed;
	bottom: 10px;
    right: 10px;
	width: 40px;
	height: 40px;
	background: var(--gr1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;	
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s;
	z-index: 9999;
}
.scrollTop.active{
	visibility: visible;
	opacity: 1;
}
.scrollTop i{
	color: #fff;
}

/*--------------------------------------------------inner page ----------------------------------*/
#innerBanner{
	width: 100%;
	position: relative;
	top: 10vh;
	/*background: linear-gradient(118.34deg, #AF0776 35.45%, #9C1492 45.99%, #4E0686 63.47%);*/
	background: linear-gradient(118.34deg, rgba(152, 25, 109) 35.45%, rgba(156, 20, 146) 45.99%, rgba(78, 6, 134) 63.47%);
	/*background: #020333;*/
	margin-bottom: 50px;	
	height: 320px;
}
.innerBanner{
	position: absolute;
	background: url('../images/inner.jpeg');
	background-size: cover;
	mix-blend-mode: multiply;
    height: 320px;
    width: 100%;
    opacity: 0.5;
    filter: blur(5px);
}
.innerHContent{	
	display: flex;
	align-items: center;
	justify-content: space-between;
	 
}
.innerBreadcrumb{
	z-index: 99;
}
.innerBreadcrumb h1{
	font-size: 5rem;
	font-weight: 600 !important;
	color: var(--yellow);
	margin-bottom: 0 !important;
}
.innerBreadcrumb h3{
	color: #fff;
}
.innerBreadcrumb h3 a{
	color: #fff;
	text-decoration: none;
	font-size: 1.5rem;
}
.innerheaderImage{
	height: 100%;
	width: 30%
}
.innerheaderImage img{
	
	width: 100%
}

#innerCIone{
  width: 100%;
}
#innerCItwo{
  width: 100%;
}
.innerCImage{
	width: 100%;
	padding: 0 10px;
}
.innerCImage img{
	width: 100%;
	border: 3px solid;
	border-image-slice: 1;
    border-image-source: linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);
}
.innerCIContent{
	width: 100%;
	height: auto;
	padding: 0 20px;
	
}
.CIimages{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
	grid-gap: 20px;	
}
.CIimages img{
	width: 100%;
}
/*-------------------------------------------event page ------------------------------------*/
.keyEventWrapper{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
	grid-gap: 20px;
	padding: 30px 0;
}
.eventBox{
	max-width: 100%;
	padding:10px;
	border: 5px solid;
	border-image-slice: 1;
	border-image-source: linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);
}
.eventBox .eventImage{
	width: 100%;
}
.eventBox .eventImage img{
	width: 100%;
}
/*-----------------------------------Cbsat-------------------------------------*/
#cabSat{
	padding: 30px 0;
}
.lowerTitle{
	padding: 10px 0;
}
.galleryWrapper{
	padding: 30px 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
	grid-gap: 30px;
}
.galleryWrapper .galImg{
	width: 100%;

}
.galleryWrapper .galImg img{
	width: 100%;
	border: 5px solid #dbd9d9;
	box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/*---------------------------------------- pr page -------------------------------------------*/
#prBox{
	width: 100%;
	padding: 50px 0;
}
.prTitleBox{
	width: 100%;
	background: #002245;
	position: relative;
	height: 20vh;
	display: flex;
}
.prTitleBox .prDateTag{
    position: relative;
    width: 30%;
    top: 0;
    left: 0;
    height: 100%;
}
.prTitleBox .prDateTag .prdateBg{
	position: absolute;
	top: 0;
	left: 100px;
	background: #efbb17;
	width: 100px;
	height: 100%;
	padding: 0 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}
.prTitleBox .prTitle{
	width: 70%;
	padding: 0 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.prTitleBox .prTitle h5{
	color: #fff;
	font-size: 1.5rem;
}
.prInnerHeader{
	padding: 10px 5px;
}
.prImage{
	width: 100%;
}

/*--------------------------------------------------  contact us ------------------------------*/

.contTitle{
	padding: 10px 0;
}
.contLeft .contAddress{
	margin-bottom: 50px;
}
.contLeft .contCont{
	margin-bottom: 50px;
}
.contLeft, .contRight{
	padding: 50px 0;
}
.contLeft p{
	margin-bottom: .3rem;
}
.conLine{
	display: flex;
}
.contLeft p.conBold{
	font-weight: 600;
	margin-right: 10px;
}

.contRight{
	width: 100%;
}
.contRight .conForm{
	width: 100%;
}
.contRight .conForm form{
	width: 100%;
}
.contRight .conForm form .con-100{
	width: 100%;
	display: flex;
	margin-bottom: 15px;
}
.contRight .conForm form .con-100 .con-50{
	width: 50%;
}
.contRight .conForm form .con-100 .con-50:nth-child(1){
	margin-right: 5px;
}
.contRight .conForm form .con-100 .con-50:nth-child(2){
	margin-left: 5px;
}
.contRight .conForm form input,
.contRight .conForm form textarea{
	width: 100%;
	padding: 5px 5px;
}
.contRight .conForm form textarea{
	height: 10rem;
}
.contRight .conForm button{
	padding: 5px 10px;
}

#conSupport{
	/*padding: 20px 0;*/
	background: linear-gradient(129.63deg, #351084 16.75%, #B51850 72.65%);

}
.contSupport{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-left: 100px;

}
.contSupport p{
	color: #ededed;
	margin-bottom: .7rem;

}
.contSupport p.conBold{
	color: #fff;
	font-weight: 600;
	font-size: 1.3rem;
}



/*------------------------------------------------ media query -------------------------------- */

@media screen and (max-width: 400px){
		:root{
		font-size: 6px;
	}
	#innerBanner{	
	height: 115px;
	}
	.innerBanner{	
	    height: 115px;    
	}
	#mainHeader{
		height: 40vh;
	}
	#mainHeader .mainHeader{
	   height: 40vh;
	}
	.carousel-item .carouselImg{
		height: 40vh;
   }
   #mainHeader .mainHeader #carouselExampleIndicators .carousel-inner{	
	   height: 40vh;
   }
   .carouselImgRight{
		height: 40vh;
   }
   nav.bgblack{	
   	height: 10vh;
	padding: 0 20px;
   }

}

@media screen and (max-width: 600px){
	nav.bgblack{	
   	height: 10vh;
	padding: 0 20px;
   }
}

@media screen and (min-width: 401px) and (max-width: 768px){
	:root{
		font-size: 11px;
	}
	
	#innerBanner{	
	height: 160px;
	}
	.innerBanner{	
	    height: 160px;    
	}
	#mainHeader .mainHeader #carouselExampleIndicators{
	
	height: 30vh;
    }
    #mainHeader{
		height: 30vh;
	}
	#mainHeader .mainHeader{
	   height: 60vh;
	}
	.carousel-item .carouselImg{
		height: 30vh;
   }
   #mainHeader .mainHeader #carouselExampleIndicators .carousel-inner{	
	   height: 30vh;
   }
   .carouselImgRight{
		height: 60vh;
   }
   .carousel-caption{
   	top: 50%;
   }
   .carouselImgRight img{
   	top: 30%;
   }
   .div10{
   	height: 6vh;
   }
   .carousel-caption h2{
   	font-size: 2.5rem;
   }
   .tileBox .tilecontent h2 {
    font-size: 3rem;
  }
  .metrixBoxes .mBox h4{
  	font-size: 2.8rem;
  }
  .supportBoxs {
  	padding: 40px 20px;
  }
  .subTitle p{
  	width: 65%;
  	font-size: 1.1rem;
  }
  .tileBox .tilecontent p {
    font-size: 1.1rem;
    text-align: center;
}
.contentText p{
	font-size: 1.2rem;
}
.sContent p{
	font-size: 1.3rem;
	text-align: center;
}
.testiBox .testiBoxContent p{
	font-size: 1rem;
	line-height: 1.2rem;
}
.partnerBox{
	width: 175px;
}
	

}

@media screen and (max-width: 768px){
	.toggler{
		display: block;
	}
	.nav>ul{
		display: block;
		position: absolute;
		top: 0;
		right: -230px;
		background: rgba(0,0,0,0.9);
		z-index: 9999;
		width: 230px;
		height: 100vh;
		transition: all 0.5s ease;
	}
	.nav ul.active{
		right: 0;
	}
	.nav > ul > li{
		padding: 0 15px;
		margin-bottom: 20px;
	}
	.nav ul li a{
		font-size: 1.8rem;
		display: flex;
		align-items: center;
	}
	.nav ul li i{
		display: inline-block;
		font-size: 2rem;
	}
	.closenav{
		display: block;
	}
	.havesubmneu{
		display: block;
	}	
	.nav ul li .subMenu{
		position: relative;
		width: 210px;
		height: 100%;	
		transform: translateY(1px);
		opacity: 1;
		visibility: visible;
		display: none;
		transition: all 0.5s ease;
		background: transparent;
		border:none;
   }
   .nav ul li:hover .subMenu.activa{
   	display: block;
   }
   .carouselImgRight {
   	right: -15px;
   }
   .carousel-caption {
   	left: 10%;
   	
   }

}
@media screen and (min-width: 768px){
	.nav ul li a.active:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}
.nav ul li a.active:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
}
.nav ul li:hover .subMenu{
	opacity: 1;
	visibility: visible;
	transform: translateY(15px);
}
}


@media screen and (min-width: 769px) and (max-width: 992px){
	:root{
		font-size: 11px;
	}
	nav {		
		padding: 10px 15px!important;
	}
	.nav ul li {
	   padding: 10px 8px;
	}
	.carousel-caption {
		left: 10%;
		top: 55%;
	}
	
	#innerBanner{	
	height: 210px;
	}
	.innerBanner{	
	    height: 210px;    
	}	
	.havesubmneu i {
		padding-left: 4px;
	}

}

@media screen and (min-width: 992px){
	.supportBoxs{
	max-width: 1150px;
    }
    .footerRow:nth-child(2){
	padding: 20px 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
}

@media screen and (min-width: 992px) and (max-width:1303px){
	nav {		
		padding: 10px 35px;
	}
	nav .mainlogo {
		width: 7rem;
	}
	.nav ul li {
		padding: 10px .45rem;
	 }
	.nav ul li a{
		font-size: 0.9rem;
	}
	.havesubmneu i {
		padding-left: 6px;
	}

}
