/* font family */
@font-face {
  font-family: 'switzer_regular';
  src: url('../fonts/Switzer-Light.woff2') format('woff2'),
    url('../fonts/Switzer-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'satoshi_black';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2'),
    url('../fonts/Satoshi-Black.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'helvetica_regular';
  src: url('../fonts/HelveticaNeue-Light.woff2') format('woff2'),
    url('../fonts/HelveticaNeue-Light.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




:root {
  --mainColor: #0064fb;
  --secondColor: #2e2f46;
  --thirdColor: #ff414b;
  --thirdColorShadow: #ffeced;
  --backgroundColor: #ebebeb;
  --transparentColor: #fcebe5;
  --whiteColor: #ffffff;
  --fix-whiteColor: #ffffff;
  --fix-blackColor: #242424;
  --blackColor: #242424;
  --paragraphColor: #666666;
  --fontSize: 15px;
  --card-title-fontSize: 20px;
  --transition: 0.5s;
  --boxShadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;


}



* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: 'switzer_regular', sans-serif;
  background-color: var(--whiteColor);
  overflow-x: hidden;
}

/* =============================
           Scroll Bar
============================== */


/* body {
  scrollbar-width: thin;
  scrollbar-color: #fff #ff414b;
} */

/* 
body::-webkit-scrollbar {
  width: 11px;
}

body::-webkit-scrollbar-track {
  background: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: #222222;
  border-radius: 2px;
  border: 1px solid #242424;
}

 */

/* =============================
          Default Css
============================== */
a {
  text-decoration: none;
  outline: 0 !important;
}

a:hover {
  text-decoration: none;
}

:focus {
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
    font-family: 'switzer_regular', sans-serif;
}

/* p:last-child {
    margin-bottom: 0;
} */

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-30 {
  padding-top: 0px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.section-content {
  margin-top: 40px;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--whiteColor) !important;
  z-index: 99999;
  padding: 0px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.bg-f9faff {
  background-color: #f9faff;
}

.bg-mainColor {
  background-color: var(--mainColor);
}

.bg-000000 {
  background-color: #00000d;
}

.rs {
  margin-top: -10px;
}



/* =============================
            button 
============================== */
.btn::before {
  background-color: rgb(28, 31, 30);
  transition: 0.3s ease-out;
}

.btn span {
  color: rgb(255, 255, 255);
  border: 1px solid rgb(28, 31, 30);
  transition: 0.2s 0.1s;
}

.btn span:hover {
  color: rgb(28, 31, 30);
  transition: 0.2s 0.1s;
}

.btn-shop {
  background: linear-gradient(45deg, #3375ae, #0F3556);
  color: #fff;
  outline: none;
  /*border: 1px solid #e7e7e7;*/
    padding: 9px 30px;
    border-radius: 5px 5px 5px 0;
}

.btn-shop::before {
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
}

.btn-shop:hover::before {
  opacity: 0;
}

.btn-shop:hover {
  background: linear-gradient(45deg, #0F3556, #3375ae);
  color: #fff;
}

.btn-service {
  border: 2px solid #369dc8;
  color: #369dc8;
}

.btn-book {
  background: linear-gradient(45deg, #245784, #0F3556);
  color: #fff;
  outline: none;
  border: none;
  padding: 10px 35px;
  border-radius: 4px;
}

.btn-book:hover {
  background: linear-gradient(230deg, #245784, #0F3556);
  color: #fff;
}


.contact-us-right .btn-book {
  width: 100%;
}

.btn-reach {
  color: #33628D;
  font-weight: 700;
  padding: 0;
}

.btn-learn {
  border: 1px solid #ffffff;
  border-radius: 7px;
  padding: 15px 28px;
  color: #ffffff;
  font-weight: 600;
	background: linear-gradient(45deg, #3375ae, #0F3556);
}

.btn-learn:hover {
  background: linear-gradient(235deg, #3375ae, #0F3556);
  color: #fff;
}

.btn-footer {
  background: linear-gradient(230deg, #ff1117, #B90005);
  color: #fff;
  outline: none;
}

.btn-footer:hover {
  background: linear-gradient(45deg, #ff1117, #B90005);
  color: #fff;
  outline: none;
}

/* =============================
        Scroll Top
================================*/
#button {
  display: inline-block;
  background-color: #0f3556;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1em;
  line-height: 30px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}


/* =================================
            Bradcrumbs
==================================== */

.breadcumb-img {
  position: relative;
}

.breadcumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 220px;
  max-height: 220px;
}

.breadcrumbs-content {
  position: absolute;
  top: 28%;
  left: 36%;
  /* transform: translate(-50%, -50%); */
  text-align: left;
}

.breadcrumbs-content h2 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  font-family: 'satoshi_black';
  /* text-shadow: 2px 2px #161616; */
}

.breadcrumbs-content p {
  color: #FFFFFF;
  font-weight: 500;
  opacity: .5;
  font-size: 16px;
  letter-spacing: 2px;
}

.breadcrumbs-content p a {
  color: #fff;
}

#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(90deg, #006EFF, #006eff10);
  cursor: pointer;
}

/* =============================
            nav bar 
============================== */
.navigation {
  width: 100%;
  height: 85px;
  z-index: 9;
}

.brand {
  position: absolute;
  padding-left: 20px;
  /* float: left; */
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
  top: 0;
  z-index: 4;
  padding: 15px 0;
}

.brand a,
.brand a:visited {
  color: #ffffff;
  text-decoration: none;
}


.nav-container {
  /*max-width: 1120px;*/
  margin: 0 auto;
  /*display: flex;*/
  justify-content: flex-start;
  align-items: center;
}

.nav-shop {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  position: absolute;
top: 48px;
    right: 16px;
  z-index: 999;
}

/*.px-nav{*/
/*    padding:0 65px;*/
/*}*/

/* ===========================
      stellarnav
============================ */
.stellarnav li a{
      font-family: 'switzer_regular', sans-serif;
}
.stellarnav.dark{
  background-color: #0000;
  /* z-index: 110; */
}
.stellarnav > ul > li > a {
    color: #fff!important;
    /* border-top-left-radius: 56px; */
    /* border-top-right-radius: 10px; */
    /* border-bottom-right-radius: 0; */
    /* border-bottom-left-radius: 0; */
    /* clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%); */
    /* border-radius: 28% 5px 0 0; */
    /* width: 210px; */
    text-align: center;
    padding: 10px 29px !important;
    background: linear-gradient(45deg, #3375ae, #0F3556);
    margin-left: -7px;
    box-shadow: -6px 3px 10px -1px rgb(0 0 0 / 58%);
    border-radius: 10px 10px 0 0;
}
.stellarnav li.has-sub > a:after{
  border-top: 6px solid #060606;
}
.stellarnav.dark ul ul{
    background-color: #98cafd;
    border: 1px solid #98cafd;
    border-radius: 0 0 10px 10px;
    margin-left: -6px;
    overflow: hidden;
    }

.stellarnav.dark a {
  color: #000;
}

.stellarnav.dark .menu-toggle span.bars span{
  background-color: #000;
}

.stellarnav.mobile .menu-toggle, .stellarnav.mobile .dd-toggle, .stellarnav.mobile .close-menu, .stellarnav.mobile .call-btn-mobile, .stellarnav.mobile .location-btn-mobile{
  display: flex;
  justify-content: flex-end;
}

.stellarnav.mobile.dark ul {
  background: rgb(255 255 255);
}

.stellarnav.mobile li a {
  border-bottom: 1px solid rgb(0 0 0 / 42%);
  text-align: left;
  }

.stellarnav > ul > li > a {
  padding: 15px 13px;
}

.call-btn-mobile {
  display: none;
}

.location-btn-mobile{
  display: none;
}

.stellarnav.mobile.right .location-btn-mobile.third, .stellarnav.mobile.right .call-btn-mobile.third{
  display:none;
}
.stellarnav .third {
  width: 100%;}



  .stellarnav li.has-sub:hover > a:after{
    border-top: 6px solid #ffffff;
  }

  .stellarnav.mobile.right .close-menu.third {
    text-align: right;
}

.stellarnav ul {
    text-align: left;
    display: flex;
    /* border-bottom: 3px solid #123a5c; */
    /* width: 83%; */
     justify-content: flex-end;
}
.stellarnav.nav-tabs {
    border: none;
}
.nav-tabs{
  padding: 75px 0 0;
}

.stellarnav li{
  border: 0;
}

.tabs  a{
  /* background: linear-gradient(162deg, transparent 29%, #f1f1f1 30%); */
  background: #98cafd;
  position: relative;
}
.tabs .active{
  /* background: linear-gradient(162deg, transparent 29%, #98cafd 30%); */
  position: relative;
  background: #98cafd;
}

/* .tabs a:before {
  content: '';
  position: absolute;
  z-index: 11;
  left: 100%;
  top: -100%;
  height: 70px;
  line-height: 90px;
  width: 0;
  border-bottom: 70px solid rgb(255 255 255 / 10%);
  border-right: 7px solid #ffffff00;
} */

.tabs a:hover {
  /* background: linear-gradient(165deg, transparent 29%, #354968 30%); */
  color: #ffffff!important;
  background: #354968;
}


.stellarnav.drop-left:hover li a{
  color:rgb(0, 0, 0);
}

.tabs a.active:before {
  content: '';
  position: absolute;
  z-index: 11;
  left: 100%;
  top: -100%;
  height: 70px;
  line-height: 90px;
  width: 0;
  border-bottom: 70px solid #ffffff00;;
  border-right: 20px solid transparent;
}


.tabs .drop-left ul li a{
  background:#98cafd;
}
.tabs .drop-left a:before{
  display:none;
}
.tabs .drop-left a.active:before{
  display:none;
}

.tabs .drop-left ul li a:hover{
background:rgb(53, 73, 104);
    border-radius: 0 0 10px 10px;
}
.drop-left ul li a{
  color:#000;
}
.drop-left:hover ul li a{
  color:#000;
    border-radius: 0 0 10px 10px;
}




/* ===========================
       message box
============================ */
.message-box {
  position: fixed;
  bottom: 55px;
  right: 18px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  padding: 16px 25px;
  border: 5px solid rgb(135 183 255);
  margin: 15px 0;
  width: 30px;
  height: 30px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #123a5c;
}

.message-box i, .message-box svg{
  color:#fff;
  font-size: 25px;
}


/* =============================
           top bar 
============================== */
.call-us {
  text-align: right;
  background: linear-gradient(270deg, #e7e7e7, #fff0);
  padding: 5px 15px;
}

.call-us a {
  color: #13202F;
}



/* ===========================
        Hero Section
============================ */

.hero-sec #particles-js{
  overflow: hidden;
}

.hero {
  /* background: url(../images/banner01.png) no-repeat; */
    background: #0064fb;
    background-size: cover;
    /* padding: 40px 40px 0; */
    padding: 90px 40px;
    min-height: 600px;
    height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-top-left-radius: 25px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 25px;
}

.hero-right-bg {
    position: absolute;
    right: 4%;
    top: 20%;
}

.hero-sec-box{
    margin: 0 75px;
}

.hero-content {
/*   position: absolute;
  top: 35%;
  left: 10%; */
  text-align: left;
}


.hero-content h2 {
  color: #FFFFFF;
  font-size: 75px;
  font-weight: 700;
  font-family: 'satoshi_black';
}


.hero-content h6 {
  color: #fff;
  opacity: 0.7;
  font-weight: 400;
  font-size: 34px;
  letter-spacing: 2px;
}

.hero-content h5 {
  color: #fff;
  opacity: 0.7;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 2px;
    font-family: 'helvetica_regular';
}

.hero-content h4 {
  color: #FFFFFF;
  font-size: 60px;
  font-weight: 700;
  font-family: 'satoshi_black';
}

.hero-right {
  position: relative;
}

.hero-right-img {
    position: absolute;
    top: 38%;
	right: 0;
}


.hero-content .btn-book {
  margin: 25px 0;
}

.banner-svg {
    position: absolute;
    top: 0;
    z-index: -1;
    bottom: 0;
   left: 90px;
    right: 0;
}
.banner-svg svg {
    height: 100%;
    width: auto;
}
.banner-svg svg path:nth-of-type(odd)
{
    fill:none;
    transition:.7s ease-in-out;
}
.banner-svg.add-class svg path:nth-of-type(odd)
{
    fill:#fff;
    transition:.7s ease-in-out;
}



canvas {
  display: block;
  /* vertical-align: bottom; */
}

#particles-js {
  position: absolute;
  /* width: 100%; */
  height: 100%;
  /* background: #00356B; */
}

#particles-js1 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -9;

  /* background: #00356B; */
}

.text {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  color: #fff;
  max-width: 90%;
  padding: 2em 3em;
  background: rgba(0, 0, 0, 0.4);
  text-shadow: 0px 0px 2px #131415;
  font-family: "Open Sans", sans-serif;
}



/* ===========================
       Explore  Box Section
============================ */
.explore {
  margin: 6% auto;
  width: 70%;
}

.explore h2 {
  font-size: 50px;
  color: #0F3556;
  font-weight: 900;
  font-family: 'satoshi_black';
}


/* ===========================
       Service Box Section
============================ */
.service-box {
  border: 2px solid #F2F8FF;
  padding: 30px 15px;
  position: relative;
  min-height: 335px;
  background: #F2F8FF;
  box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
  box-shadow: rgb(50 50 93 / 17%) 0px 13px 27px -5px, rgb(0 0 0 / 13%) 0px 8px 16px -8px;
}

.service-box-btn {
  position: absolute;
  bottom: -20px;
  right: 35px;
  background: #006EFF;
  border-radius: 5px;
  color: #fff;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.service-box-btn button {
  color: #fff;
}


.service-box-img {
  margin-bottom: 25px;
}

.service-box-img img {
  padding: 15px;
  background: #fff;
      border-radius: 15px;
}

.service-box-content h2 {
  font-size: 24px;
  color: #0F3556;
  font-weight: 800;
   font-family: 'helvetica_regular';
}

/* ===========================
       About Section
============================ */

.about-us {
  background: #f0f9f8;
  position: relative;
  /*padding:30px 0;*/
	overflow: hidden;
}

/* .about-right {
  overflow: hidden;
} */

.about-left {
  padding: 50px 0;
  margin-top: 12%;
}

.about-right  .swiper-button-next, .swiper-button-prev {
  top: 30%;
}

.about-right  .swiper-button-next, .swiper-button-prev {
  top: 30%;
}

.business {
  margin: 7% 0 0;
  position: relative;
overflow: hidden;
    z-index: 1;
}

.business-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

.business-img img {
  height: 350px;
}

.business-left {
  position: relative;
}

.business-left-img {
	margin: 0px 0px;
	padding: 0px 0px;
	width: 100%;
	left: -110px;
	position: absolute;
}

.business-left-box {
	background-color: #27aae1;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	height: 371px;
	width: 480px;
	position: relative;
	bottom: -270px;
	right: -65px;
	padding: 55px;
	margin-bottom: 59px;
}
    
.business-left-box ul {
   margin: 0px 16px;
   }
   
.appo {
	background: linear-gradient(45deg, #3375ae, #0F3556);
	color: #fff !important;
	padding:10px 15px;
	margin: 0px 20px;
	font-size: 16px;
	border-radius: 0 0 15px 15px;
}
   
   
   

/*.business-left-box {*/
/*	max-width: 273px;*/
/*	padding: 20px 25px 36px;*/
/*	top: 25%;*/
/*	z-index: 9;*/
/*	height: 228px;*/
	/* clip-path: polygon(0 0, 100% 0, 100% 76%, 0% 100%); */
/*	position: absolute;*/
/*	right: 0;*/
/*	background-color: #27aae1;*/
/*	border-color: #27aae1;*/
/*}*/

/*.business-left-box::before {*/
/*    content: " ";*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-bottom: 65px solid;*/
/*    border-color: inherit;*/
/*    border-left: 150px solid transparent;*/
/*    border-right: 121px solid transparent;*/
/*    position: absolute;*/
/*    top: -65px;*/
/*    left: 0;*/
/*    right: 0;*/
/*    margin: 0 auto;*/
/*}*/
/*.business-left-box::after {*/
/*    content: " ";*/
/*    width: 0;*/
/*    height: 0;*/
/*    border-top: 65px solid;*/
/*    border-color: inherit;*/
/*    border-left: 150px solid transparent;*/
/*    border-right: 121px solid transparent;*/
/*    position: absolute;*/
/*    bottom: -65px;*/
/*    left: 0;*/
/*    right: 0;*/
/*    margin: 0 auto;*/
/*}*/

.business-left-box p {
	color: #fff;
	font-size: 24px;
	text-align: center;
	line-height: 31px;
	font-weight: 600;
	margin: 0px 47px;
	
}
.business-left-icon {
  position: absolute;
  background: #0F3556;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: 20%;
  right: 25px;
  z-index: 9;
}
.business-right-box {
    overflow: hidden;
    
    height: 100%;
}
.business-svg {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.business-svg svg {
    height: 400px;
    width: 414px;
    transform: rotate(88deg);
}
.business-svg svg path {
    fill: #666;
}

.business-svg svg path:nth-of-type(even)
{
    fill:none;
    transition:.7s ease-in-out;
}
.business-svg.aos-animate svg path:nth-of-type(even)
{
    fill:#666;
    transition:.7s ease-in-out;
}



.business-right h2 {
  color: #0F3556;
  font-weight: 700;
  font-size: 48px;
  font-family: 'satoshi_black';
  padding: 0 25px;
}

.business-right p {
  padding: 15px 25px 40px;
  color: #262626CC;
  font-size: 17px;
}

.business-right .btn-book {
	margin: 0 25px 50px 34px;
}

.business-left-img img{
    margin-bottom: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

.breadcrumbs-content{
        left: 14%;
}

/* Testimonal vertical slider */

.site-logo {
  width: 218.33px !important;
  margin-right: 50px;
}

/* .btn {
  border-radius: 5px;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 30px;
  cursor: pointer;
}
.btn-theme {
  background: var(--theme-color1);
  color: #212121;
} */

.c-container {
  margin: auto;
  width: 93%;
  position: relative;
  z-index: 1;
}

/*.btn-outline-white {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: none;
  border-width: 2px;
  border-color: #fff;
  font-weight: 500;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
 .btn {
  border-radius: 5px;
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 30px;
  cursor: pointer;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: var(--text-dark);
} */
/* common css up */

.testimonial p {
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 35px;
}

.testimonial .name {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 35px;
  text-align: left;
  color: #000;
}

.testimonial .designation {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: left;
  color: rgb(0, 0, 0);
  opacity: 0.65;
}

.unt {
  margin-bottom: 20px;
  margin-top: 60px;
}

.hero-text {
  font-size: 30px;
  letter-spacing: 0.02em;
  color: #fff;
}

.gallery-thumbs {
  height: 100%;
}

.gallery-thumbs .swiper-wrapper {
  align-items: center;
}

.gallery-thumbs .swiper-slide {

  position: relative;
  display: none;
}

.gallery-thumbs .swiper-slide img {
  filter: contrast(0.5) blur(1px);
  width: 100%;
  height: 100%;
  object-fit: cover;
      border-radius: 15px;
}

.gallery-thumbs .swiper-slide-active img {
  filter: contrast(1) blur(0px) !important;
}

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.flex-row .flex-col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.gallery-thumbs .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.testimonial-section .quote {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    background: #fff;
    margin: 0 0 0 32px;
    padding: 20px;
    border-radius: 6px;
    flex-direction: column;
    gap: 15px;
}

.swiper-container.testimonial {
  height: 100vh;
}

.testimonial-section .user-saying {
  background: var(--theme-color2);
  width: 100%;
  color: #fff;
  height: 100%;
}

/* .testi-user-img {
  width: 40%;
} */
.testimonial-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.testimonial-section .quote p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  /* font-size: 16px; */
  /* font-weight: 300; */
  /* line-height: 1.8; */
  /* font-style: italic; */
  /* margin: 0; */
}

/* .testimonial-section .swiper-slide.swiper-slide-active {
    top: -98px;
} */
/*.testimonial-section .swiper-slide{*/
/*    bottom: -55px;*/
/*}*/

.user-saying .swiper-container.testimonial {
    height: 50vh;
}

.quote-bottom .quote-name .name{
  font-weight: 800;
}

.quote-icon {
    width: 50px;
    margin-bottom: 30px;
    background: #006EFF;
    padding: 14px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 36px;
}

.about-right .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left:92%;
  transform: rotate(90deg);
  top: 50%;

}

.about-right .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 26px;
  left: auto;
  transform: rotate(90deg);
  top: 60%;
}

.quote-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}
.quote-img {
  width: 80px;
  height: 80px;
}

.quote-img img {
  border: 1px solid #000;
  border-radius: 50%;
}

.about-right .swiper-slide.swiper-slide-next {
  right: 75px;
bottom: 5px;
}

.about-right .swiper-slide.swiper-slide-next .quote-img {
  right: -10px;
  position: absolute;
}

.about-right .swiper-slide.swiper-slide-next .quote-content {
  margin-left: 25px;
}

/* .about-right .swiper-slide {
    bottom: -98px;
} */

.about-us h2 {
  color: #0F3556;
  font-weight: 700;
  font-size: 48px;
  font-family: 'satoshi_black';
}

.about-upper {
  height: 45px;
  position: absolute;
  top: 0;
  /*background: linear-gradient(180deg, #f0f9f8, #f0f9f824);*/
  background: linear-gradient(180deg, #f0f9f8, #f0f9f824);
  z-index: 9;
  width: 100%;
}

.about-lower {
  height: 45px;
  position: absolute;
  bottom: 0;
  /* background: linear-gradient(90deg, #f0f9f8, #f0f9f824);
  background: linear-gradient(0deg, #f0f9f8d6, #f0f9f852); */
  background: linear-gradient(0deg, #f0f9f8, #f0f9f824);
  z-index: 9;
  width: 100%;
}

.about-right .swiper-slide.swiper-slide-prev {
  top: -50px;
}

.full-left-box ul {
  list-style: none;
}



.support-list p {
  position: relative;
  padding: 0 40px 0 55px;
}

.support-list p .icon {
	position: absolute;
	left: 0;
	top: 26px;
    }
.support-list p .icon.icon-mt {
   top: 56px;
   }

.full-support-right h2 {
  color: #ffffff;
  font-weight: 700;
  font-size: 35px;
  font-family: 'satoshi_black';
  margin-bottom: 30px;
  text-align: center;
}

.full-support-right p {
    color: #ffffff;
    font-weight: 300;
    font-size: 20px;
    line-height: 25px;
    }


/* ===========================
       Full Service Section
============================ */
.full-support {
  margin: 6% 0px;
}

.full-support-right {
  background: #006EFF;
  padding: 55px 30px 14px 30px;
  border-radius: 15px;
}

.full-support-right .form-group {
  height: 50px;
  background: #4d9aff;
  display: flex;
  align-items: center;
  border-radius: 5px;
  margin-bottom: 30px;
}

.full-support-right .form-control {
  border: none;
  background: #4d9aff;
  color: rgb(255, 255, 255);
  text-transform: capitalize;
}

.full-support-left h2 {
	color: #0F3556;
	font-weight: 700;
	font-size: 48px;
	font-family: 'satoshi_black';
	margin-bottom: 25px;
	line-height: 60px;
}



.head {
  font-size: 22px;
  font-weight: 700;
  color: #262626CC;
  line-height: 47px;
   font-family: 'helvetica_regular';
}




.full-support-right .btn-book {
	background: #000;
	width: 100%;
}
/* ===========================
      Partners Section
============================ */

.partners {
  background: #F0F9F8;
  padding: 60px 0;
}

.partners-head h2 {
  color: #0F3556;
  font-weight: 800;
  text-align: center;
  font-family: 'satoshi_black';
}

.partners-box {
  margin: 35px 0;
}

.partners-box .swiper{
    padding: 0 10px 0 50px;
}

.partners-box .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 0;
}

.partners-box .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 0;
}

.partners-box .swiper-button-next, .swiper-button-prev{
  top: 60%;
}

/* ===========================
      Footer Section
============================ */
.footer {
  background: url(../images/footer-bg.png) no-repeat;
  background-size: cover;
  padding: 40px 0;
  clear: both;
}


.footer-review h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

.footer-review img {
  margin: 30px 0;
	background: #fff;
}


.footer-list h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

.footer-list ul {
  list-style: none;
}

/* .footer-list ul li {
  padding: 9px 0 0;
} */

.footer-list ul li a {
  color: #E9F7FE;
  font-size: 14px;
  font-weight: 400;
}

.footer-contact h4 {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
}

.footer-contact ul {
  list-style: none;
}

/* .footer-contact ul li {
  padding:9px 0 0;
} */

.footer-contact ul li p {
  color: #E9F7FE;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
	line-height:1.5;
}

.footer-contact ul li a {
  color: #E9F7FE;
  font-size: 14px;
  font-weight: 400;
}

/* .copyright-box {
  border-top: 1px solid #8c97ac;
  padding: 30px 0 0;
  text-align: center;
} */
.copyright-box {
/* 	border-top: 1px solid #8c97ac; */
	padding: 30px 0 0;
	text-align: center;
	margin-top: 50px;
}

.copyright-box p {
  color: #8C97AC;
  margin: 0;
}

/* social menu */

.social-menu ul {
  position: absolute;
  padding: 0;
  margin: 0;
  display: flex;
  z-index: 9;
}

.social-menu ul li {
  list-style: none;
  margin: 0;
}

.social-menu ul li .fab {
  font-size: 30px;
  line-height: 60px;
  transition: .3s;
  color: #000;
}

.social-menu ul li .fab:hover {
  color: #fff;
}

.social-menu ul li a {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  text-align: center;
  transition: .6s;
  /* box-shadow: 0 5px 4px rgba(0,0,0,.5); */
  display: flex;
/*   justify-content: center; */
  align-items: center;
  /* border: 1px solid #81736B; */
  font-size: 20px;
}

.social-menu ul li a:hover {
  transform: translate(0, -10%);
}


.social-menu ul li a i,
.social-menu ul li a svg {
  color: #dedede;
}


.social-menu ul li:hover a i,
.social-menu ul li:hover a svg {
  color: #fff;
}


/* ===========================
    Superops Section(inner)
============================ */
section.service-inner {
  margin: 6% 0;
}

.service-inner-box {
  background: #0F3556;
  padding: 30px;
      border-radius: 15px;
}

.service-inner-boxl h2 {
  color: rgb(255 255 255);
  font-weight: 700;
  font-size: 38px;
  font-family: satoshi_black;
}

.service-inner-boxl p {
  color: #FFFFFFCC;
  padding: 0 18px 0 0;
  font-size: 16px;
  line-height: 2.3;
}

/* ===========================
    Superops Section(benefit)
============================ */
.benefits-box {
  overflow: hidden;
      border-radius: 15px;
  margin: 0 0 7%;
}

.benefits-box-content ul {
  list-style: none;
}

.benefits-box-content ul li {
  padding: 0 0 10px;
}

.service-inner .btn-book {
  background: linear-gradient(45deg, #006EFF, #4495ff);
}

.service-inner .btn-book:hover {
  background: linear-gradient(230deg, #006EFF, #4495ff);
}

.benefits-box-content {
  background: #F2F8FF;
  padding: 30px;
  min-height: 465px;
}

.benefits-box-content h2 {
  color: #0F3556;
  font-weight: 700;
  font-size: 38px;
  font-family: 'satoshi_black';
}

.service-box-icon .btn {
  border: 2px solid #000;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
}

.service-box-icon .btn i {
  font-weight: 800;
}

.benefits-box .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 35px;
}

.benefits-box .swiper-button-next-benefit,
.swiper-button-prev-benefit {
  top: 90%;
}

.benefits-box .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 40%;
}

.benefits-box .swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 40%;
} 

/* ========================================
  Superops Section(service-assets)
=========================================== */
.service-assets {
  margin: 0 0 7%;
}

.service-assets .service-box {
  min-height: 360px;
  height: 360px;
  margin-bottom: 35px;
      border-radius: 15px;
}

.service-assets .service-box-content h2 {
  min-height: 65px;
}

.service-assets .service-box p {
  min-height: 90px;
}

.service-assets .service-box-img img {
  background: transparent;
}

.service-box-icon {
  display: flex;
  justify-content: flex-end;
}





/*******************Madhuparna-14-9-22***********************************/

/*******************blog-css-start***********************************/

.inner-banner {
  width: 100%;
  height: auto;
  padding: 0px;
  margin: 0px;
  background: #006EFF;
}

.inner-banner-left {
    /*background: #006EFF;*/
    padding: 30px 50px 35px 70px;
    margin: 0px;
    width: 100%;
    min-height: 340px;
}

.blog-banner .px-nav{
        padding: 0 82px;
}

.inner-banner-left h6 {
  color: #fff;
  padding: 0px 0px 20px 0px;
  text-align: left;
  margin: 0px;
  font-size: 18px;
  font-family: 'satoshi_medium';
}

.inner-banner-left h2 {
  color: #fff;
  padding: 0px 0px 10px 0px;
  text-align: left;
  margin: 0px;
  font-size: 40px;
}

.inner-banner-left p {
  color: #fff;
  padding: 0px 0px 20px 0px;
  text-align: left;
  margin: 0px;
  font-size: 14px;
}

/*.inner-banner-right {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*}*/

/*.inner-banner-right img {*/
/*  width: 100%;*/
/*  height: auto;*/
/*}*/

.blog-inner {
  padding: 100px 0px;
  margin: 0px;
  background: #fff;
}

.blog-inner-row {
  padding: 60px 0px;
  margin: 0px;
}

.blog-inner-box {
  background: #F2F8FF 0% 0% no-repeat padding-box;
  box-shadow: 0px 15px 10px #507EB421;
  border: 1px solid #6BABFF33;
  border-radius: 8px;
  width: 100%;
  min-height: 475px;
  padding: 0px;
  margin: 0px 0px 40px 0px;
}

.blog-inner-box-img {
  width: 100%;
  height: 208px; 
  background: #eaeaea;
  border-radius: 8px 8px 0px 0px;
  padding: 0px;
  margin: 0px;
  border: none;
}

.blog-inner-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

.blog-inner-box-text {
  padding: 30px 30px;
  margin: 0px;
  position: relative;
}

.blog-inner-box-text h2 {
  font-size: 20px;
  color: #111111;
  padding: 0px 0px 10px 0px;
  margin: 0px;
  line-height: 28px;
    font-family: 'helvetica_regular';
}

.blog-inner-box-text p {
  font-size: 18px;
  color: #262626CC;
  padding: 4px 0px 10px 0px;
  margin: 0px;
  line-height: 22px;
    font-family: 'switzer_regular' sans-serif;
}

.blog-inner-box-text .read-more {
  color: #006EFF;
  padding: 0px;
  margin: 0px;
  font-size: 18px;
  font-family: 'satoshi_medium';
}

.blog-inner-box-text .read-more:hover {
  color: #000;
}

.tag-box {
  background: #006EFF;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  position: absolute;
  top: -53px;
  padding: 10px 18px;
}

.tag-box h3 {
  font-size: 28px;
  color: #fff;
  padding: 0px;
  margin: 0px;
    font-family: 'helvetica_regular';
}

.tag-box p {
  font-size: 12px;
  color: #fff;
  padding: 0px;
  margin: 0px;
  font-family: 'satoshi_medium';
}

.blog-inner .nav-tabs {
  border-bottom: none;
  text-align: center;
margin:auto;
}

.blog-inner .nav-tabs li a {
  font-size: 20px;
  color: #000;
   font-family: 'helvetica_regular';
}

.blog-inner .nav-tabs .nav-link:focus,
.blog-inner .nav-tabs .nav-link:hover {
  color: #006EFF;
  background-color: #fff;
  border: 1px solid #006EFF;
  border-radius: 5px;
}

.blog-inner .nav-tabs .nav-item.show .nav-link,
.blog-inner .nav-tabs .nav-link.active {
  color: #006EFF;
  background-color: #fff;
  border: 1px solid #006EFF;
  border-radius: 5px;
}

.pagination {
  margin: 0px auto;
  text-align: center;
  display: inherit;
}

.pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination ul li {
  display: inline-block;
}

.pagination ul li a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  border: 1px solid var(--mainColor);
  margin: 0 3px;
  font-size: 15px;
}

.pagination ul .active a {
  color: #fff;
  background-color: #006EFF;
}

.pagination ul li a:hover {
  color: #fff;
  background-color: #006EFF;
}




/*******************blog-css-end***********************************/

/******************services-css-start******************************/

.services-inner {
  padding: 50px 0px  100px 0px;
  margin: 0px;
}
.services-inner2 {
  padding: 50px 0px  0px 0px !important;
   }
.services-inner2 .full-support-left h2 {
    color: #0F3556;
    font-weight: 600;
    font-size: 33px;
    font-family: 'satoshi_black';
    margin-bottom: 25px;
  }

.services-one h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0F3556;
  padding: 0px 0px 40px 0px;
  margin: 0px;
  text-align: center;
  font-family: 'satoshi_black';
}
.services-one h2 span {
  font-size: 37px;
  font-weight: 400;
  font-family: 'switzer_regular', sans-serif;
  }

.services-one {
  margin: 0px 0px 100px 0px;
}
.services-one2 {
  margin: 0px 0px 0px 0px !important;
}
.services-one .service-box {
  min-height: 200px;
  margin-bottom: 35px;
  text-align: center;
}

.service-box h3 {
  color: #0F3556;
  font-size: 24px;
  margin: 0px;
  padding: 0px 0px 10px 0px;
    font-family: 'helvetica_regular';
}

.service-box p {
  color: #7B7B7B;
  font-size: 16px;
  line-height: 26px;
  padding: 0px;
  margin: 0px;
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
  color: #fff;
}

input[type="radio"]:checked+label::before {
  border-color: #fff;
  padding: 4px 4px;
}

.form-check-label {
  color: #fff;
}

.flatrate-content{
  margin: 0px 0px;
  padding: 36px 0px 66px 0px;
  width: 100%;
  background: #ecedef;
  }
  
.flatrate-content h5 {
    color: #143e62;
    font-size: 21px;
    line-height: 32px;
    padding: 0px;
    margin: 0px;
    text-align: center;
    font-weight: 300;
    font-family: 'satoshi_black';
   }
   
.flatrate-content h6{
  color: #143e62;
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
  padding: 0px;
  margin: 22px 0px 0px 0px;
  text-align: center;
  }

.picturebenefits-content{
    margin: 0px 0px;
    padding: 36px 0px 0px 0px;
    width: 100%;
    background: #ffffff;
    }
.picturebenefits-content h2 {
      font-size: 48px;
      font-weight: 600;
      color: #0F3556;
      padding: 0px 0px 18px 0px;
      margin: 0px;
      text-align: center;
      font-family: 'satoshi_black';
    }
.picturebenefits-content h2 span {
      font-size: 37px;
      font-weight: 400;
      font-family: 'switzer_regular', sans-serif;
      }
.benefits-text{
  margin: 0px 0px;
  padding: 37px 43px;
  background: #e6e7e9;
  height: 400px;
  overflow: hidden;
  }
.benefits-text p {
    color: #143e62;
    font-size: 19px;
    line-height: 31px;
    padding: 0px 0px 22px 0px;
    margin: 0px;
    text-align: left;
  }
  .benefits-img{
    margin: 0px 0px;
    padding: 0px 0px;
    width: 100%;
    height: 400px;
    }
.benefits-img img{
      width: 100%;
      height: 400px;
      object-fit: cover;
      }
 .handoff-content {
  margin: 0px 0px;
  padding: 56px 0px 66px 0px;
  width: 100%;
  background: #7baaeac9;
  }
.handoff-content h2 {
        font-size: 45px;
        font-weight: 600;
        color: #0F3556;
        padding: 0px 0px 18px 0px;
        margin: 0px;
        text-align: center;
        font-family: 'satoshi_black';
      }
.handoff-content p {
        color: #143e62;
        font-size: 16px;
        line-height: 31px;
        padding: 0px 254px;
        margin: 0px;
        text-align: center;
      }
.handoff-content p span {
        color: #143e62;
        font-size: 17px;
        font-weight: 600;
      }

/******************services-css-end******************************/


/*******************Madhuparna***********************************/
.form-group .form-control::-webkit-input-placeholder {
  color: rgb(255, 255, 255);
}

.form-group.form-control::-moz-placeholder {
  color: rgb(255, 255, 255);
}

.mail-chp-inner .form-group .form-control::-webkit-input-placeholder {
  color: rgb(0, 0, 0);
}

.mail-chp-inner .form-group.form-control::-moz-placeholder {
  color: rgb(0, 0, 0);
}

/* ========================================
              Newsletter
=========================================== */

.subscribe-newsletter {
  background: #006EFF;
  padding: 30px;
  margin: 20px 0 0;
}

.subscribe-newsletter h2 {
  color: #fff;
  font-size: 30px;
}

.subscribe-newsletter p {
  color: rgb(245, 245, 245);
  font-size: 16px;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ebebeb;
  border: 1px solid #f1f1f1;
  color: #000;
  border-radius: 5px;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #000000;
  padding: 13px 20px;
  border: 2px solid #000000;
  top: 0;
  color: #fff;
}

.o-bottomBanner{
  overflow: hidden;
}

.blog-banner .inner-banner-right{
        width: 450px;
    height: 450px;
}
.logo{
  height: 140px;
  width: 140px;
  padding: 0px 0px;
  margin: 0px 0px;
}
.logo img{
  height: 141px;
  width: 89%;
  object-fit: cover;
}











/****************** About ITCS Css Start (Anant Singh) ******************************/

.about-itsc_section {
  padding: 55px 0px;
  border-radius: 0px;
  }
.about-itsc_section .benefits-box {
    overflow: hidden;
    border-radius: 0px;
    margin: 0 0 7%;
  }
.about-itsc_section .benefits-box-content {
  padding: 0px !important;
  min-height: 380px !important;
  background: none;
   }
.about-itsc_section .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -4px;
    }
.about-itsc_section .text-section {
    position: absolute;
    bottom: 75px;
    background: #00000061;
    right: 33px;
    width: 79%;
    padding: 16px;
    }
.about-itsc_section .text-section h2 {
  color: #ffffff;
  font-weight: 600;
  font-size: 25px;
  text-transform: uppercase;
  }
  .about-itsc_section .text-section p {
    color: #ffffff;
    font-weight: 400;
    font-size: 15px;
    line-height: 19px;
    margin: 0px;
    padding: 0px;
    }
.about-itscright{
  margin: 0px 0px;
  padding: 0px 0px;
  width: 100%;
  }
.about-itscright h3 {
  color: #0F3556;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 27px;
  font-family: 'satoshi_black';
  text-transform: uppercase;
  }
.about-itscright h4 {
    color: #0F3556;
    font-weight: 600;
    font-size: 18px;
    }
.about-itscright p {
  color: #7B7B7B;
  font-size: 16px;
  line-height: 26px;
  padding: 0px;
  margin: 0px;
  }
.mission-left{
  margin: 0px 0px;
  padding: 0px 17px 0px 0px;
  width: 100%;
  }
.mission-left h3 {
    color: #0F3556;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 27px;
    text-align: right;
    font-family: 'satoshi_black';
    text-transform: uppercase;
    } 
.mission-left p {
      color: #7B7B7B;
      font-size: 16px;
      line-height: 26px;
      padding: 0px;
      margin: 0px;
      text-align: right;
      }
.mission-right{
    margin: 0px 0px;
    padding: 0px 0px;
    width: 100%;
    }
.mission-right h3 {
      color: #0F3556;
      margin-bottom: 25px;
      font-weight: 500;
      font-size: 27px;
      text-align: left;
      font-family: 'satoshi_black';
      text-transform: uppercase;
      } 

.mission-right .fa {
  background: #ccc;
  font-size: 30px;
  padding: 17px;
  border-radius: 50%;
  color: #ffffff;
  width: 66px;
  height: 66px;
  line-height: 30px;
  text-align: center;
  }
.mission-right h2 {
      color: #0F3556;
      margin-bottom: 4px;
      font-weight: 500;
      font-size: 17px;
      text-align: left;
      font-family: 'satoshi_black';
      text-transform: uppercase;
      } 
.mission-right p {
        color: #7B7B7B;
        font-size: 16px;
        line-height: 22px;
        padding: 0px;
        margin: 0px;
        text-align: left;
        }

/****************** Our Team page Css ******************************/

.ourteam-section {
  padding: 55px 0px;
  border-radius: 0px;
  }
.ourteam-section h3 {
    color: #0F3556;
    margin: 0px;
    font-weight: 500;
    font-size: 27px;
    font-family: 'satoshi_black';
    text-transform: uppercase;
  }
.ourteam-section p {
    color: #7B7B7B;
    font-size: 16px;
    line-height: 26px;
    padding: 0px;
    margin: 0px;
  }
.ourteam{
  margin: 0px 0px;
  padding: 0px 0px;
  width: 100%;
  }
  .ourteam h2 {
    color: #0F3556;
    margin-bottom: 22px;
    font-weight: 500;
    font-size: 19px;
    text-align: left;
    font-family: 'satoshi_black';
  }
  .ourteam h2 span {
    color: #cccccc;
    font-size: 14px;
    font-weight: 300;
  }
.ourteam p {
    color: #7B7B7B;
    font-size: 16px;
    line-height: 26px;
    padding: 0px;
    margin: 0px;
  }


  .ourteam .whos-speaking-area .speakers {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #dee2e6;
    border-radius: 6px;
}
.ourteam .whos-speaking-area .speakers:hover {
    -webkit-box-shadow: 0 0 6px 5px #ddd;
    box-shadow: 0 0 6px 5px #ddd;
    border-radius: 6px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    border: 1px solid #dee2e6;
}
.ourteam .whos-speaking-area .speakers .spk-img {
    position: relative;
    height: 400px;
   }
.ourteam .whos-speaking-area .speakers .spk-img:before {
    background: rgb(63 69 76 / 41%);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 5;
}
.ourteam .whos-speaking-area .speakers .spk-img:hover:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.ourteam .whos-speaking-area .speakers .spk-img img {
    width: 100%;
    height: 400px;object-fit: cover;
}
.ourteam .whos-speaking-area .speakers .spk-img ul {
  position: absolute;
  display: inline-block;
  top: 35%;
  left: 40%;
  width: 136px;
  line-height: 3;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  padding: 23px 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}
.ourteam .whos-speaking-area .speakers .spk-img ul:before2 {
  position: absolute;
  content: "";
  height: 140px;
  width: 140px;
  background: transparent;
  top: 0%;
  left:-5px;
  /*border: 1px solid #fff;*/
  /*-webkit-transform: rotate(44deg) scale(1.4);*/
  /*-ms-transform: rotate(44deg) scale(1.4);*/
  /*transform: rotate(44deg) scale(1.4);*/
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  background:url("../../assets/images/hexagon.png");
}
.ourteam .whos-speaking-area .speakers .spk-img ul li {
    display: inline-block;
    -webkit-transform: perspective(50px) rotatey(80deg);
    transform: perspective(50px) rotatey(80deg);
    -webkit-transition: all 0.5s ease 0.2s;
    -o-transition: all 0.5s ease 0.2s;
    transition: all 0.5s ease 0.2s;
    margin: 0 10px;
}
.ourteam .whos-speaking-area .speakers .spk-img ul li a i.fa {
    color: rgba(255, 78, 0, 0.8);
    font-size: 18px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 28px;
    color: #fff;
    height: 28px;
    line-height: 21px;
    text-align: center;
}
.ourteam .whos-speaking-area .speakers .spk-img ul li a i.fa:hover {
    color: #006eff;
}
.ourteam .whos-speaking-area .speakers .spk-img ul li:nth-child(1) {
    -webkit-transform: translate3d(-53px, -50px, 0);
    transform: translate3d(-53px, -50px, 0);
}
.ourteam .whos-speaking-area .speakers .spk-img ul li:nth-child(2) {
    -webkit-transform: translate3d(53px, -50px, 0);
    transform: translate3d(53px, -50px, 0);
}
.ourteam .whos-speaking-area .speakers .spk-img ul li:nth-child(3) {
    -webkit-transform: translate3d(-53px, 50px, 0);
    transform: translate3d(-53px, 50px, 0);
}
.ourteam .whos-speaking-area .speakers .spk-img ul li:nth-child(4) {
    -webkit-transform: translate3d(53px, 50px, 0);
    transform: translate3d(53px, 50px, 0);
}
.ourteam .whos-speaking-area .speakers .spk-img:hover ul {
    left: 32%;
    opacity: 1;
    z-index: 9;
}
.ourteam .whos-speaking-area .speakers .spk-img:hover ul:before {
    opacity: 1;
}
.ourteam .whos-speaking-area .speakers .spk-img:hover ul li:nth-child(1),
.ourteam .whos-speaking-area .speakers .spk-img:hover ul li:nth-child(2),
.ourteam .whos-speaking-area .speakers .spk-img:hover ul li:nth-child(3),
.ourteam .whos-speaking-area .speakers .spk-img:hover ul li:nth-child(4) {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.ourteam .whos-speaking-area .speakers .spk-img:hover ul li:nth-child(1){
	opacity: 1;
    -webkit-transform: rotate(44deg) scale(1);
    -ms-transform: rotate(44deg) scale(1);
    transform: rotate(44deg) scale(1);
}
.ourteam .whos-speaking-area .speakers .spk-info {
    text-align: center;
    padding: 30px 0;
}
.ourteam .whos-speaking-area .speakers .spk-info h3 {
    color: #252525;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 5px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    text-transform: capitalize;
}
.ourteam .whos-speaking-area .speakers .spk-info h3:hover {
    color: #4125dd;
}
.ourteam .whos-speaking-area .speakers .spk-info p {
    font-size: 15px;
    margin-bottom: 0;
    color: #656565;
}

.ourteam .whos-speaking-area-two .title-text h2 {
    color: #fff;
}

.ourteam .whos-speaking-area-two .speakers {
    position: relative;
    overflow: hidden;
}
.ourteam .whos-speaking-area-two .speakers:hover img {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}
.ourteam .whos-speaking-area-two .speakers img {
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    -webkit-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.ourteam .whos-speaking-area-two .speakers .img-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background: rgba(91, 69, 213, 0.9);
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.ourteam .whos-speaking-area-two .speakers:hover .img-overlay {
    opacity: 1;
}
.ourteam .whos-speaking-area-two .speakers .name a {
    position: absolute;
    bottom: -20%;
    left: 10%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.ourteam .whos-speaking-area-two .speakers .name a:hover {
    color: #cf057c;
}
.ourteam .whos-speaking-area-two .speakers:hover .name a {
    bottom: 10%;
}
.ourteam .whos-speaking-area-two .speakers .social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 23%;
    left: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.ourteam .whos-speaking-area-two .speakers .social-icons li {
    margin-right: 10px;
}
.ourteam .whos-speaking-area-two .speakers .social-icons li a {
    color: #fff;
}
.ourteam .whos-speaking-area-two .speakers .social-icons li a:hover {
    color: #252525;
}
.ourteam .whos-speaking-area-two .speakers:hover .social-icons {
    left: 27px;
}
.ourteam:nth-child(even) .whos-speaking-area .speakers .spk-img ul:before {
    background:url("../../assets/images/circle.png");
}

.lightbox-section {
	position: relative;
	margin: 0px 0px;
	padding: 0px 0px;
}
.lightbox-section .btn:focus, .btn:active, button:focus, button:active {
	outline: none !important;
	box-shadow: none !important;
}
.lightbox-section #image-gallery .modal-footer {
	display: block;
}
.lightbox-section .thumb {
  margin-top: 17px;
  margin-bottom: 0px;
  border: #e7e6e6 1px solid;
  padding: 15px;
  overflow: hidden;
  position: relative;
  }
.lightbox-section .col-lg-3, .lightbox-section .col-md-4, .lightbox-section .col-xs-6 {
	padding-right: 0px;
	padding-left: 0px;
}
.lightbox-section .img-thumbnail {
	padding: 0;
	background-color: #fff;
	border: 0px solid #dee2e6;
	border-radius: 0;
  width: 100%;
	max-width: 100%;
	min-height: 150px;
}
.lightbox-section .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #edeceac4;
	pointer-events: none;
}
.lightbox-section .thumb:hover .overlay {
	opacity: 1;
}
.lightbox-section .text {
  color: white;
  font-size: 31px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgb(0 111 255);
  text-shadow: 0px 0px 2px #131415;
  font-family: "Open Sans", sans-serif;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  text-align: center;
  padding: 36px 9px;
  }
.lightbox-section .modal-header .close {
	padding: 1rem;
	position: absolute;
	right: 13px;
	color: #f70404;
	top: 3px;
}
.lightbox-section .modal-title {
	margin-bottom: 0;
	line-height: 1.5;
	padding-left: 12px;
}
.support-icon1{
  position: relative;
  width: 53px;
  text-align: center;
  float: left;
  margin-right: 13px;
}
.support-icon1:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  left: 23px;
  top: 1px;
  border-radius: 0px;
  height: 83px;
  width: 5px;
  background: #4394e6;
  color: #4394e6;
  font-size: 0px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  z-index: -9;
}
.support-icon2{
  position: relative;
  width: 53px;
  text-align: center;
  float: left;
  margin-right: 13px;
}
.support-icon2:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  left: 23px;
  top: 1px;
  border-radius: 0px;
  height: 83px;
  width: 5px;
  background: #4394e6;
  color: #4394e6;
  font-size: 0px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  z-index: -9;
}
.support-icon3{
  position: relative;
  width: 53px;
  text-align: center;
  float: left;
  margin-right: 13px;
}
.support-icon3:before {
  counter-increment: section;
  content: counter(section);
  position: absolute;
  left: 23px;
  top: 1px;
  border-radius: 0px;
  height: 12px;
  width: 5px;
  background: #4394e6;
  color: #4394e6;
  font-size: 0px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  z-index: -9;
}

.support-icon1 h6{
  position: absolute;
  width: 100%;
  color: #ffffff;
  padding: 8px 3px;
  font-size: 20px;
}
.support-icon2 h6{
  position: absolute;
  width: 100%;
  color: #ffffff;
  padding: 8px 3px;
  font-size: 20px;
}
.support-icon3 h6{
  position: absolute;
  width: 100%;
  color: #ffffff;
  padding: 8px 3px;
  font-size: 20px;
}

.full-left-box li {
	list-style: none;
	margin-bottom: 30px;
}

.services-inner3 .full-support-left h2 {
  margin-bottom: 39px;
}

.menu-item-341 a {     background: #98cafd;}

.menu-item .menu-item-type-custom .menu-item-object-custom .menu-item-has-children .menu-item-341 a {     background: red;}

/* css modification */
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff0000;
    color: #fff;
}

.page-id-125 .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ff0000;
    color: #ff0000 !important;
}

.full-support-right .form-group {
    height: 60px;
}
    
.wpcf7-not-valid-tip {
    color: #8e1d1d;
}

.section-inner.thin.error404-content {
    margin: 50px 0;
}


.breadcrumbs-content h2{
        font-size: 30px;
}

.call-us
ul#menu-header-menu {
    list-style: none;
    float: right;
    margin-left: 11px;
}
.call-us li#menu-item-wpglobus_menu_switch_fr {
    list-style: none;
    }
.tabs a.active  {
    background: #354968;
    }
.blog-leftmenu{
    margin: 0px 0px;
    padding: 23px 19px;
    width: 100%;
    height: 800px;
    overflow: auto;
    color: rgba(0, 0, 0, 0);
    -webkit-text-fill-color: black;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    transition: color .3s ease;
    box-shadow: rgba(50, 50, 93, 0.17) 0px 13px 27px -5px, rgba(0, 0, 0, 0.13) 0px 8px 16px -8px;
   }
.blog-leftmenu *::-webkit-scrollbar,
.blog-leftmenu *::-webkit-scrollbar-thumb {
  width: 26px;
  border-radius: 13px;
  background-clip: padding-box;
  border: 10px solid transparent;
  }

.blog-leftmenu *::-webkit-scrollbar-thumb {        
  box-shadow: inset 0 0 0 10px;
  }

.blog-leftmenu div:hover {
  color: rgba(0, 0, 0, 0.3);
  }
   
   
   
.blog-leftmenu .nav-item {
  width: 100%;
  }
  
  
.blog-leftmenu.nav{
	margin: auto;
}
.blog-leftmenu .nav-item a{
    color: #000;
    border: 1px solid #f5efef;
    border-radius: 0px;
    margin-bottom: 6px;
	}
.blog-leftmenu .nav-item a:hover{
	color:#000;
	border: 1px solid #006EFF;
	}
.nav-item a.active{
	color: #006EFF;
	background-color: #fff;
	border: 1px solid #006EFF;
	}
.page-numbers{
	margin: auto;
	}
.page-numbers li {
	display: inline-block;
	}
			
.page-numbers li a , .page-numbers li .current {
				width: 35px;
				height: 35px;
				border-radius: 50%;
				display: -webkit-inline-box;
				display: -ms-inline-flexbox;
				display: inline-flex;
				-webkit-box-align: center;
				-ms-flex-align: center;
				align-items: center;
				-webkit-box-pack: center;
				-ms-flex-pack: center;
				justify-content: center;
				-webkit-transition: .5s ease;
				transition: .5s ease;
				border: 1px solid var(--mainColor);
				margin: 0 3px;
				font-size: 15px;
			}
			
 .page-numbers li .current {
				background: #006EFF;
			    color: #fff;
			}
  
.contact-left  h2 {
  color: #0F3556;
  font-weight: 600;
  font-size: 40px;
  font-family: 'satoshi_black';
  margin-bottom: 25px;
  }
 .contact-section  h3 {
  color: #0F3556;
  font-weight: 600;
  font-size: 40px;
  font-family: 'satoshi_black';
  margin-bottom: 12px;
  }
.map-section h1 {
  color: #0F3556;
  font-weight: 600;
  font-size: 22px;
  font-family: 'satoshi_black';
  margin-bottom: 25px;
  }
  
  .map-section iframe {;
  margin-bottom: 25px;
  }
  
.faq h1 {
  color: #0F3556;
  font-weight: 600;
  font-size: 25px;
  font-family: 'satoshi_black';
  margin-bottom: 25px;
}
.faq ul {
    margin: 0px 17px;
   }
.entry-contentul {
    margin: 0px 17px;
   }
#mc_embed_signup .mc-field-group.input-group ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
    width: 100%;
}
#mc_embed_signup .mc-field-group.input-group input {
    margin-right: 6px;
}
#mc_embed_signup .mc-field-group select {
    display: inline-block;
    width: 99%;
    padding: 10px 0 !important;
    margin-bottom: 2px;
    border: #ccc 1px solid;
}
#mc_embed_signup .mc-field-group input {
    display: block;
    width: 100%;
    padding: 10px 0 !important;
    text-indent: 2%;
    border: 1px solid #ABB0B2;
    border-radius: 0px;
    }
    
.glitch-error {
    margin: 0px auto;
    padding: 0px 0px;
    width: 500px;
    }    

/*.menu-item-341 a {
	pointer-events: none;
}


.menu-item-341 .sub-menu a {
	pointer-events: visible;
}*/

.services-inner {
	padding: 0px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.business-right ul li span{
	color:#0f3556;
    margin-right: 10px;
    font-size: 15px;

}



.hexagon {
top: 30vh;
left: 40%;
position: absolute;
margin: 0 auto;
background-color: dodgerblue;
border-radius: 10px;
width: 100px;
height: 63px;
box-sizing: border-box;
transition: all 1s;
border: 0.4vh solid transparent;

}


.hexagon:before, .hexagon:after {
content: "";
border: inherit;
position: absolute;
top: -0.5vh;
left: -0.5vh;
background-color: dodgerblue;
border-radius: inherit;
height: 100%;
width: 100%;
}


.hexagon:before {
transform: rotate(60deg);
}


.hexagon:after {
transform: rotate(-60deg);
}


.call-us .tabs a {
	background: none;
}

.call-us ul li {
	list-style-type: none;
} 

.about-section h2 {
	color: #0F3556;
	margin-bottom: 25px;
	font-weight: 500;
	font-size: 50px;
	text-align: center;
	font-family: 'satoshi_black';
	text-transform: uppercase;
}
.about-section p {
	text-align: center;
	font-size: 34px;
	line-height: 50px;
}

.business-right ul {
	margin-left: 32px;
	margin-top: 30px;
}

.business-right ul li {
	padding-bottom: 17px;
	list-style-type: none;
}

.business-left-box ul li {
    color: #fff;
    list-style-type: none;
    padding: 0px 33px;
    line-height: 44px;
    }

.business-left-box ul li span {
    margin-right: 10px;
    font-size: 20px;
    }
.mail-chp-inner ::-webkit-input-placeholder {
    color:#000;
}
.mail-chp-inner input::placeholder {
  color: #000;
   }


.mail-chp {
	padding: 80px 0px;
	width: 100%;
	float: left;
	background: #fff;
	clear: both;
}
/* .row.mail-chp-inner {
	margin-bottom: 60px;
} */

.mc4wp-alert.mc4wp-error p {
    color: #22547f;
    font-weight: 600;
}
.mail-chp .form-control {
	border: 1px solid #0f3556;
	padding: 16px 20px;
	height: 45px;
	border-radius: 10px;
	text-align: left;
}

.mail-chp h2 {
	font-size: 25px;
	padding: 0px 0px 20px 0px;
	color: #0F3556;
	font-weight: 600; font-family: 'satoshi_black';
	text-align:center;
}



.full-left-box ul li span {
	position: relative;
	top: 7px;
	font-size: 22px;
}


.ourteam .whos-speaking-area .speakers .spk-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}


.ourteam .whos-speaking-area .speakers .spk-img img{
	width: 100%;
	height: 400px;
	object-fit: cover;
}
.explore p{
    font-size: 17px;
    }
.ourteam-section .ourteam .whos-speaking-area .speakers .spk-img {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  }
  
.ourteam-section .ourteam .whos-speaking-area .speakers {
 	-webkit-box-shadow: 0 0 6px 0px #ddd;
	border: 0px solid #dee2e6;
	box-shadow: 0 0 0px 0px #ddd;
    }
.ourteam-section .ourteam .whos-speaking-area .speakers:hover {
	-webkit-box-shadow: 0 0 6px 0px #ddd;
	border: 0px solid #dee2e6;
	box-shadow: 0 0 0px 0px #ddd;
    }
.ourteam-section .ourteam .whos-speaking-area .speakers .spk-img ul {
	position: absolute;
	display: inline-block;
	top: 31%;
	border-radius: 50%;
    }
.call-text{
    font-size:22px;
    }
    




.faq {
  background: #F6F6F6;
  padding: 80px 0;
  
}

.faq-head h2 {
  font-size: 70px;
  color: #707070;
  text-align: center;
  padding-bottom: 30px;

}

.faq-head h2 span {
  color: #0f3556;
}

/* .accordion .accordion-item {
  border-bottom: 1px solid #e5e5e5;
} */

.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #ffffff;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  outline: none;
  margin: 0 0 8px;
  padding: 20px;
  background: linear-gradient(45deg, #3375ae, #0F3556);
  border-radius: 10px 10px 0 0;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 35px;
 
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 20px;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded=true] {
  color: #fcfcfc;
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded="true"] + .accordion-content {
	opacity: 1;
	max-height: 9em;
	transition: all 200ms linear;
	will-change: opacity, max-height;
	border: 1px solid #d3c9c9;
	margin: -9px 0 20px;
	padding: 0px 18px;
	background: #fff;
	border-radius: 0 0 10px 10px;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  font-family: 'Lato', sans-serif;
}  
    
    
    
.icon-2 {
	width: 20px;
	height: 20px;
	display: block;
	float: left;
}    
    
    
 .map-section {
    background: #98cafd;	
    padding: 40px 25px;
    margin: 45px 0 0;

}
#btn-back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: none;
}
.call-us .tabs a{
    z-index: 9999;
}


.banner-svg-right {
    position: absolute;
    top: 0;
    z-index: -1;
    bottom: 0;
    /* left: 0; */
    right: 45px;
	transform: rotate(270deg);}

li.menu_item_wpglobus_menu_switch a:after {
    content: '';
    margin-left: 5px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
    display: inline-block;
}

li.menu_item_wpglobus_menu_switch a:hover{
color:#000!important;
}

.sub-menu li.sub_menu_item_wpglobus_menu_switch a:after {
      display: none;
}

.contact-section .form-group input {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 1.375rem 0.75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    background-color: transparent;
    border: 1px solid #ABB0B2;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    margin: 15px 0;
}

.contact-section .form-group select{
 	font-size: 14px;
	border: 1px solid #ABB0B2;
	height: 42px;
    border-radius: 0;
	margin: 15px 0;
}

.contact-section .form-group input::placeholder {
  color: #000;
   }

.contact-section .form-group textarea::placeholder {
  color: #000;
   }

.contact_form{
	border: 1px solid #ABB0B2;
	padding:15px;
	border-radius: 20px;
}

.contact_form button.btn.btn-learn{
	background: linear-gradient(45deg, #3375ae, #0F3556);
    color: #fff !important;
    padding: 10px 15px;
    font-size: 16px;
/*     border-radius: 0 0 15px 15px; */
	border-radius:5px;
}

.contact-left {
	margin: 150px 0px 0px 100px;
	
}

.contact-quick-links p {
	font-size: 30px;
}



.radio_box span.wpcf7-form-control.wpcf7-radio.form-control {
    border: none;
    padding: 0;
    margin: 0;
}



.hero-right-img img {
	width: 500px;
}


.hero-right-bg img {
    top: -80px;
    position: relative;
    height: 335px;
}



.new-section .full-support-left h2 {
	text-align: center;
	font-size: 48px;
	padding: 0px 72px;
}


.new-section .full-left-box ul {
	list-style: none;
	
}


.new-section .full-left-box ul li {
	width: 50%;
	float: left;
	margin: 0px;
	padding: 0px;
	height: 145px;
}

@media only screen and (max-width: 991px){
	.new-section .full-left-box ul li {
	
	height: auto !important;
}
	
	.new-section .full-left-box ul li {
    width: 100% !important;
    
  
}
}


.support-list p {

	font-size: 22px;
	line-height: 30px;
}


.new-section .support-list p .icon {
	position: absolute;
	left: 0;
	top: 26px;
}




.service-assets .service-box {
	min-height: 200px; 
	height: 200px;
	margin-bottom: 20px;
	border-radius: 15px;
	border-radius: 0;
	  text-align: center;
}

.service-box-img {
	display: none;
}

.service-assets .service-box p {
	min-height: 70px;
}

.service-assets .service-box-content h2 {
	min-height: 36px;
}


.full-left-box p {
    font-size: 25px;
    line-height: 30px;
    }





.industries h3 {
	font-size: 48px;
	text-align: center;
	padding: 0px 0px 30px 0px;
}

.industries p {
	font-size: 20px;
	line-height: 30px;
	padding: 0px;
	margin: 0px 0px 50px 0px;
}

.industries h2 {
	font-size: 40px;
	font-weight: 700;
	padding: 0px 0px 20px 0px;
	margin: 0px;
}

.spk-img img {
	border-radius: 10px;
}


.tab{
	display: none;
}
.tab-active {
    display: block;
    position: relative;
    overflow:hidden;
    
}

.tab-active:before{
  content:""; 
  transition:all 0.3s ease-in-out;
  height:100%;
  width:100%;
  position: absolute;
  right:0;
  top:0;
  animation:slide-color 1s;
  background-image: linear-gradient(90deg, #006EFF, #006eff10);
}

@keyframes slide-color {
  from {left: 0px;
  width: 80%;
}
  to {left: 200%;
    width:0%;
    content:none;
  
  }
}

section.tools_one_place {
    /*background: #6c61b9;*/
    /*border-radius: 32px;*/
    background: #ffffff;
    margin-bottom: 100px;
    }
    
.one_place {
    background: #6c61b9;
    border-radius: 32px;
    margin-bottom: 100px;
    }    
    
.inner_tab_accordian {
    padding: 80px 0px;
}

.inner_tab_accordian h3 {
    font-size: 47px;
    font-weight: 700;
    color: #fff;
    max-width: 300px;
    margin-bottom: 50px;
}

.inner_tab_accordian button {
    padding: 24px 24px 28px;
    margin: 0px;
    border: 0px;
    background: transparent;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}


 .inner_tab_accordian .card-custom {
    border-radius: 18px;
    margin-bottom: 20px;
   
    
}

.card-custom.main_dark {
    background: #020202;
}

.card-custom .card-body-custom{
  opacity:0;
}
.main_dark .card-body-custom{
  opacity:1;
}


.inner_tab_accordian .card-header-custom button {
    background: #0202024a;
    border-radius: 18px;
    transition:0.2s ease-in-out;
}

.inner_tab_accordian .card-header-custom button:hover{
  background-color: #020202;
    border-radius: 18px;
}

.inner_tab_accordian .card-header-custom button.active-a {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    background: #020202;
}

.inner_tab_accordian .card-header-custom button.active-a.collapsed{
  border-bottom-left-radius:18px !important;
  border-bottom-right-radius:18px !important;
  background-color: #020202;
}


.card-body-custom {
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    padding: 0px 24px 24px;
    position: relative;
   
}

.card-body-custom{
  color: #fff!important;
    font-size: 16px;
    line-height: 30px;
    margin: 0 0 24px;
    text-align: left;
}

.card-body-custom a{

    color: #fff!important;
    font-size: 14px;
    font-weight: 500;
    transition: .4s ease-in-out;
    display: block;
    margin-top:10px;
    

}

.card-body-custom a:hover {
    text-decoration: none;
}


.card-header-custom button {
    position: relative;
}
.card-header-custom button svg {
    top:30px;
    right: 24px;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease,-webkit-transform .3s ease;
}

.card-header-custom button:hover svg path:first-child{
fill:#fff;
}

.card-header-custom button:hover svg path:last-child{
  stroke: red;
}

button svg{
  transform: rotate(-180deg);
}
button.collapsed svg {
    display: inline-block;
    transform: rotate(0deg);
}


.inner_tab_accordian:first-child {
    padding: 80px 47px 80px 47px;
}

.inner_tab_accordian.right{
    padding:80px 47px 80px 47px;
    background: hsla(0,0%,100%,.2);
    background-image: url("accr_tab_bg.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    border-radius: 32px;
    height:100%;
    width:100%;
    display:flex;
    align-items:center;
    justify-content: center;
}

.full-left-box .support-list p .icon {
	position: absolute;
	left: 0;
	top: 23px;
    }

/*=============================
    Customer access page
===============================*/
/*-----------Support Sec-------------*/
section.support-sec {
  background-image: linear-gradient(90deg, #006EFF, #006eff10);
  padding: 40px 0;
}

.support-sechead {
  text-align: center;
  margin-bottom: 35px;
  color: #fff;
}

.support-sechead h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  font-family: 'satoshi_black';
}

.support-sechead p {
  color: #FFFFFF;
  font-weight: 500;
  opacity: .8;
  font-size: 15px;
  letter-spacing: 2px;
}

.support-box {
  position: relative;
  background: #fff;
  padding: 45px 25px 25px;
  min-height: 245px;
  box-shadow: rgb(50 50 93 / 27%) 0px 13px 27px -5px, rgb(0 0 0 / 34%) 3px 7px 18px -4px;
  background: #fafcfe;
}

.support-boxicon {
  position: absolute;
  background: #0f3556;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  border-radius: 50%;
  top: -25px;
  left: 0;
  right: 0;
  margin: auto;
}

.support-box h3 {
  font-size: 24px;
  color: #0F3556;
  font-weight: 800;
  font-family: 'helvetica_regular';
}

/*----------------- Knowledge Sec ------------------*/
section.knowledge-sec {
  padding: 60px 0 ;
}

.knowledge-sec h2 {
  color: #0F3556;
  margin-bottom: 25px;
  font-weight: 500;
  font-size: 35px;
  text-align: center;
  font-family: 'satoshi_black';
  text-transform: uppercase;
}

.knowledgesec-tab .card-header {
  background-color: rgb(168 205 253 / 23%);
}

.knowledgesec-tab .card-header .title {
  font-size: 16px;
  color: #0F3556;
  font-weight: 600;
}

.knowledgesec-tab .nav-tabs .nav-link {
  font-size: 18px;
  color: #0F3556;
  font-weight: 500;
}

.knowledgesec-tab .card-header .accicon {
  float: right;
  font-size: 20px;
  width: 1.2em;
}

.knowledgesec-tab .card-header {
  cursor: pointer;
  border-bottom: none;
}

.knowledgesec-tab .card {
  border: 1px solid #ddd;
}



.knowledgesec-tab .card-body {
  border-top: 1px solid #ddd;
}

.knowledgesec-tab .card-header:not(.collapsed) .rotate-icon {
  transform: rotate(180deg);
}

.knowledgesec-tab .nav-tabs {
  border: 0;
}

/*--------------------Customer Service---------------------*/
section.customer-service {
  padding: 40px 0 65px;
  background: #f0f9f8;
}

.customer-service h2 {
  color: #0F3556;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  font-family: 'satoshi_black';
  text-transform: uppercase;
}

.customer-service p{
  color: #7B7B7B;
  font-size: 16px;
  margin-bottom: 35px;

}

.customer-service .support-box {
  text-align: center;
}
section.top-annouce {
    background: #f0f9f8;
	font-weight: 700;
    color: #0F3556;
}

.msp-tabs .nav-tabs .nav-item.show .nav-link, .msp-tabs  .nav-tabs .nav-link.active{
    font-weight: 700;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
    box-shadow: -6px 3px 10px -1px rgb(0 0 0 / 58%);
    background: linear-gradient(45deg, #3375ae, #0F3556);
    border: 0;
}

.msp-tabs .about-us{
	border: 1px solid #dee2e6;
    border-top: 0;
}

.msp-tabs a.nav-link {
    color: #0f3556;
    font-weight: 600;
}

.msp-tabs .nav-tabs{
	 display: flex;
    justify-content: center;
}

.footer_end{
	display:flex;
	justify-content:flex-end;
}

.owl-testimonial-new .owl-dots .owl-dot.active span, .owl-testimonial-new  .owl-dots .owl-dot:hover span {
background: #1a476e !important;
}

.owl-testimonial-new  .owl-dots .owl-dot span {
    width: 25px !important;
    height: 6px !important;
}

.owl-testimonial-new  .owl-nav [class*=owl-] {
    color: #007aff52 !important;
    font-size: 70px !important;

}


.owl-testimonial-new  .owl-nav [class*=owl-]:hover {
    background: transparent !important;
     color: #007afff2 !important;
    
}

.owl-testimonial-new .owl-nav {
    margin-top: 10px;
    position: absolute;
    left: 53%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: flex-start;
    bottom: -67px;
    width: 100%;
}

.owl-testimonial-new .owl-dots {
    display: none;
}

.quote-name {
    max-width: 266px;
}

.owl-testimonial-new .owl-nav button span {
    height: 33px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.footer_store {
background: #026ccf;
    padding: 8px 44px;
    display: inline-block;
    text-align: center;
    font-size: 15px;
    border-radius: 3px;
    text-decoration: none;
    color:#fff;
}

section#custom_html-7 {
    margin-top: 27px;
}