html{
    overflow-x: hidden;
}
body{
  padding: 0;
  margin: 0;
  background: #fff;
  color: #102066;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  /*overflow-x: hidden;*/
}
.overflowon{
  overflow-y: auto;
}
.overflowoff{
  overflow-y: hidden; 
}
*{
  outline: none!important;
  transition: .2s ease-in-out;
}
img{
  max-width: 100%;
  width: 100%;
}
a{
  text-decoration: none!important;
}
.m_on{
  display: none;
}
.displayoff{
  display: none!important;
}

/*color*/
  :root {
    --primary-color: #0041d9;
    --secondary-color:  #102066;
    --txtcolor1:  #102066;
    --txtcolor2:  #0041d9;
    --dark-color: #141414;
    --light-color: #f4f4f4;
    --black: #000000;
    --white: #ffffff;
    --lightgray: #fbfbfb;
  }
  .primaryBG{
    background: var(--primary-color);
  }
  .secondaryBG{
    background: var(--secondary-color);
  }
  .transparent{
    background: transparent;
  }
  .blackBG{
    background: var(--black);
  }
  .whiteBG{
    background: var(--white);
  }
  .lightgrayBG{
    background: var(--lightgray);
  }
  .blackTXT{
    color: var(--black);
  }
  .whiteTXT{
    color: var(--white);
  }
  .grayTXT{
    color: #979797;
  }
  .txtcolor1{
    color: var(--txtcolor1);
  }
  .txtcolor2{
    color: var(--txtcolor2);
  }
/*end*/

/*Typography*/
  h1, h2, h3{
    font-family: 'Poppins', sans-serif;
  }
  .captext{
    text-transform: uppercase;
  }
  .heading{
    position: relative;
    margin-bottom: 30px;
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
  }
  .heading b, .heading strong{
    font-weight: 700;
  }
  .bttmline:after{
    content: "";
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    max-width: 30%;
    height: 4px;
    border-radius: 5px;
    background: var(--primary-color);
  }
  .heading2{
    padding: 0 15px;
    font-family: 'Poppins', sans-serif;
  }
  .heading2 b{
    font-size: 55px;
  }
  .heading2 b span{
    background: #0066ff;
    padding: 0 10px;
  }
  .sectag{
    position: relative;
    font-weight: 500;
    background: linear-gradient(108deg, #4d84ff, var(--primary-color), #0827aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }
  .sectag.nodgn, .sectag.hozrdgn{
    padding-left: 0;
  }
  .sectag:before{
    display: none;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 5px;
    width: 44px;
    box-shadow: -3px 3px 7px 0 rgb(251 176 52 / 20%);
    background-color: #0000;
    background-image: linear-gradient(340deg ,var(--primary-color) 8%,#fbb034 100%);
  }
  .sectag.nodgn:before{
    display: none;
  }
  .sectag.hozrdgn:before{
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
  }
  hr{
    border-top: 1px solid #e2e2e2;  
  }
  .bdr_t{
    border-top: 1px solid #e2e2e2;
  }
  .bdr_b{
    border-bottom: 1px solid #e2e2e2;
  }
/*end*/

/*Buttons*/
  .hoverbtn:hover{
    transform: scale(1.1);
    box-shadow: 1px 7px 15px rgba(0, 0, 0, 0.3);
  }
  .btn-gradient{
    position: relative;
    background: transparent;
    color: #000!important;
    z-index: 1;
    overflow: hidden;
    border: none!important;
  }
  .btn-gradient:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 205%;
    height: 100%;
    background: linear-gradient(135deg, #ebebeb, #a9a9a9, #ebebeb);
    z-index: -1;
    transition: .3s;
  }
  .btn-gradient:hover:after{
    transform: translateX(-45%);
  }
  .hovwhiteTXT:hover{
    color: white!important;
  }
  .hovblackTXT:hover{
    color: black!important;
  }
  .btn-shadow{
    -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  }
  .btn-round{
    border-radius: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .btn-hover-big:hover{
    transform: scale(1.02);
  }
/*end*/

/*Padding and margines*/
  .paddZero{
    padding: 0!important;
  }
  .pddlr_0{
    padding-left: 0;
    padding-right: 0;
  }
  .pdd20{
    padding: 20px;
  }
  .pdd30{
    padding: 30px;
  }
  .pdd50{
    padding: 50px;
  }
  .pddt_30{
    padding-top: 30px;
  }
  .pddb_30{
    padding-bottom: 30px;
  }
  .pddt_50{
    padding-top: 50px;
  }
  .pddb_50{
    padding-bottom: 50px;
  }
  .pddt_70{
    padding-top: 70px;
  }
  .pddb_70{
    padding-bottom: 70px;
  }
  .m_0{
    margin: 0!important;
  }
  .mt_0{
    margin-top: 0!important;
  }
  .mb_0{
    margin-bottom: 0!important;
  }
  .mt_30{
    margin-top: 30px;
  }
  .mt_50{
    margin-top: 50px;
  }
  .mt_70{
    margin-top: 70px;
  }
  .mb_30{
    margin-bottom: 30px;
  }
  .mb_50{
    margin-bottom: 50px;
  }
  .mb_70{
    margin-bottom: 70px;
  }
/*end*/

.floatL{
  float: left;
}
.floatR{
  float: right;
}
.relative{
  position: relative;
}
.fa-font:before, .fa-font:after, .fa-font li:before, .fa-font li:after{    
  font: normal normal normal 14px/1 FontAwesome;
  content: none;
}
.flxcontrol{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
}
.breadcrumb{
  background-color: var(--primary-color);
  border-radius: 0;
  color: #fff;
}
.breadcrumb a{
  color: rgb(255 255 255 / 70%);
}
.pagination {

}
.pagination span{
  position: relative;
  color: #fff;
  display: inline-block;
  padding: 5px 10px;
  background: white;
  border-radius: 5px;
  background: var(--primary-color);
  backdrop-filter: blur(20px);
  border: 1px solid rgb(255 255 255 / 15%);
  border-bottom: none;
  border-right: none;
  overflow: hidden;
}
.pagination a{
  position: relative;
  color: var(--primary-color);
  display: inline-block;
  padding: 5px 10px;
  background: white;
  border-radius: 5px;
  background: linear-gradient(125.7deg, rgb(0 63 218 / 10%) 25.43%, rgb(0 63 218 / 10%) 74.38%);
    -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgb(255 255 255 / 15%);
  border-bottom: none;
  border-right: none;
  overflow: hidden;
}
.pagination a:hover{
  color: #fff;
}
.pagination a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 100%;
  border-radius: 100%;
  background: #0a46db;
  background: linear-gradient(90deg, #0072ff 6.6%, #003fda 94.33%), linear-gradient(0deg, #071a66, #003fda);
  -webkit-filter: blur(20px);
  filter: blur(20px);
  z-index: -1;
  transition: .5s;
}
.pagination a:hover:after {
  transform: translateX(-50%) scale(1.20);
  left: 50%;
  bottom: -25%;
  width: 110%;
    -webkit-backdrop-filter: blur(10px);
  filter: blur(10px);
}

.swiper-pagination{
  bottom: -30px;
}
.swiper-pagination-bullet{
  background: var(--primary-color);
}

/*Grid background design*/
  .bg_grid{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
  }
  .bg_grid svg{
    width: 100%;
    text-align: center;
  }
  .bg_grid svg line{
    stroke: rgb(0 65 217 / 12%);
    position: relative;
    transition: .3s;
    animation: slowblink 3s infinite;
    animation-delay: var(--i);
  }
  .bg_grid svg line:nth-child(-n+18){
    
  }
  .bg_grid svg line:not(:nth-child(-n+18)){
    
  }
  @keyframes slowblink {
    0% {
      stroke-opacity: 0.1;
    } 
    50% {
      stroke-opacity: 0.3;
    }
    100% {
      stroke-opacity: 0.1;
    }
  }
  @-webkit-keyframes slowblink {
    0% {
      stroke-opacity: 0.1;
    } 
    50% {
      stroke-opacity: 0.3;
    }
    100% {
      stroke-opacity: 0.1;
    }
  }
/*end*/

/*Heading*/
  header{
   margin-bottom: 91px;
  }
  .navbar {
    margin-bottom: 0;
    background: transparent;
    z-index: 9999;
    border: 0;
    font-size: 12px !important;
    line-height: 1.4 !important;
    border-radius: 0;
    box-shadow: 0 0 0px rgb(0 0 0 / 0);
    background: rgb(255 255 255 / 2%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  header.fixed .navbar{
    box-shadow: 0 0 20px rgb(0 0 0 / 0.1);
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  .navbar.navbar-default .container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .navbar-brand{
    height: unset;
    padding: 10px 0;
    padding-left: 0px;
  }
  .navbar-nav li a:hover, .navbar-nav li.active a {
    color: #f4511e !important;
    background-color: #fff !important;
  }
  .navbar-default .navbar-toggle {
    border-color: transparent;
    color: #fff !important;
  }
  .navbar .brand{
    max-width: 180px;
  }
  .navbar-default .navbar-collapse{
    /*padding: 10px 0;*/
  }

  .navbar .menu{
    padding: 0;
    text-align: right;
    margin: 5px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }
  .navbar .menu li{
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 0;
    margin: 5px;
    font-size: 16px;
    border-radius: 50px;
    font-weight: 400;
  }
  .navbar .menu li.special{
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 18px;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(125.7deg, rgb(0 63 218) 25.43%, rgb(7 26 102) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    transition: .2s linear;
    color: #fff;
    border: 1px solid var(--primary-color);
    border-bottom: none;
    border-right: none;
  }
  .navbar .menu li.special:hover{
    transform: scale(1.05);
  }
  .navbar .menu li:hover{
    /*background: var(--primary-color);*/
  }
  .navbar .menu li.special:hover:after{
    transform: translateX(-45%);
  }
  .navbar .menu li a{
    text-decoration: none;
    padding: 8px 14px;
    display: inline-block;
    color: var(--secondary-color);
  }
  .navbar .menu li.special a{
    color: #fff!important;
    padding: 20px 25px;
    opacity: .8;
  }
  .navbar .menu li:hover a{
    /*color: var(--primary-color);*/
    color: var(--primary-color);
    opacity: 1;
  }
  .menu .menu-item-has-children>a:first-child{
    padding-right: 26px;
  }
  .menu .navcticn{
    position: absolute;
    color: var(--secondary-color);
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    z-index: 2;
    right: 0;
    top: 4px;
    padding: 8px 8px;
    cursor: pointer;
  }
  .navbar .menu li:hover .navcticn{
    color: var(--primary-color);
    transform: rotate(180deg);
  }
  .navbar .menu .sub-menu{
    padding: 20px 10px;
    position: absolute;
    width: 220px;
    right: 0;
    top: 100px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    /*background: linear-gradient(125.7deg, rgb(0 39 36 / 86%) 25.43%, rgb(7 31 29 / 87%) 74.38%);*/
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(255 255 255 / 20%);
    border-bottom: none;
    z-index: 9;
    transition: .2s;
    border-radius: 15px;
    box-shadow: 8px 20px 50px rgb(0 63 218 / 20%);
  }
  .navbar .menu li:hover > .sub-menu{
    visibility: visible;
    opacity: 1;
    top: 40px;
  }
  .navbar .menu .sub-menu li{
    display: block;
    text-align: left; 
    margin: 0;
  }
  .navbar .menu .sub-menu li:hover{
    /*background: #fff3eb;*/
  }
  .navbar .menu .sub-menu li a{
    color: var(--secondary-color);
    letter-spacing: 0;
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 5px 10px;
  }
  .navbar .menu .sub-menu li:hover a{
    color: var(--primary-color);
  }
  .navbar .menu .sub-menu .sub-menu{
    width: 250px;
    right: 50%;
    top: 0;
    background: #e5f4ff;
    z-index: -1;
    border-radius: 10px 0px 10px 10px;
  }
  .navbar .menu .sub-menu .sub-menu li a{
    color: black;
  }
  .navbar .menu .sub-menu .sub-menu li:hover a{
    color: #0043ff;
  }
  .navbar .menu .sub-menu li:hover .sub-menu{
    visibility: visible;
    opacity: 1;
    right: 100%;
    top: 0;
    z-index: 2;
  }
  .navbar .menu .sub-menu li.menu-item-has-children:hover{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .navbar-default .navbar-toggle{
    /*display: unset;
    float: left;
    margin: 18px 15px 18px 0;
    padding: 8px;*/
    background: transparent!important;
  }
  .navbar-toggle .icon-bar{
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 5px;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: var(--secondary-color);
  }
  .navbar-toggle .icon-bar+.icon-bar {
    margin-top: 5px;
    transition: .5s;
  }
  .navbar-default .navbar-toggle .icon-bar:nth-child(2){
    width: 82%;
  }
  .navbar-default .navbar-toggle .icon-bar:nth-child(3){
    width: 50%;
  }  
  .navbar-default .navbar-toggle.collapsed .icon-bar{
    width: 28px;
  }
  .navbar-default .navbar-collapse{
    max-height: 86px!important;
    overflow: hidden!important;
    margin: 5px 0 0px auto;
    transition: 0s;
  }
  .navbar-default .navbar-collapse:hover{
    overflow: visible!important;
  }
  .navbar-collapse.collapse[aria-expanded="false"]{
    visibility: hidden;
    opacity: 0;
  }
/*End*/

/*banner section*/
  .section-1{  
    z-index: 1;
  }
  .section-1 .swiper-mainslider{
    overflow: hidden;
  }
  .sl_bg_dgns{
    width: calc(50% + 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 870px;
    margin-right: -60px;
    padding: 30px 0;
  }
  .sl_bg_dgns:after, .sl_bg_dgns:before{
    position: absolute;
    content: "";
    background: linear-gradient(90deg, #0041d9 6.6%, #0079ff 94.33%), linear-gradient(0deg, #0041d9, #0079ff);
    -webkit-filter: blur(200px);
    filter: blur(200px);
    opacity: .5;
    top: 25%;
    width: 20%;
    height: 40%;
    border-radius: 50%;
  }
  .sl_bg_dgns:after{
    -webkit-transform: rotate(-10.77deg);
    transform: rotate(-10.77deg);
    left: -10%;
    width: 15%;
  }
  .sl_bg_dgns:before{
    -webkit-transform: rotate(10.77deg);
    transform: rotate(10.77deg);
    right: 10%;
    top: 10%;
  }
  .showcase {
    width: 100%;
    position: relative;
  }
  .showcase:after{
    content: "";
    position: absolute;
    left: 50%;
    top: calc(50% - 85px);
    width: 100%;
    height: 100%;
    min-height: 100vh;
    /*background: url(../img/bannerbg.png) no-repeat center center/cover;*/
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.3;
  }
  .showcase .flxcontrol{
    align-content: center;
    align-items: stretch;
    height: calc(100vh - 105px);
    overflow: hidden;
  }
  .showcase-content {
    position: relative;
    z-index: 2;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .showcase-content .slidercontnent{

  }
  .showcase-content h1.bnrheading {
    font-weight: 700;
    font-size: 56px;
    margin: 0 0 3rem;
    color: var(--txtcolor1);
  }
  .showcase-content h1.bnrheading b, .showcase-content h1.bnrheading strong{
    color: var(--primary-color);
  }
  .showcase-content .bnrp {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 2.5rem;
    color: var(--secondary-color);
    opacity: .6;
  }
  .showcase-content .bnrp ol, .showcase-content .bnrp ul{
    padding-left: 20px;
  }
  .showcase-content .bnrp ol li, .showcase-content .bnrp ul li{
    margin-bottom: 10px;
    position: relative;
  }
  .showcase-content .bnrp ul li{
    padding-left: 12px;
    list-style: none;
  }
  .showcase-content .bnrp ul li:before {
    content: " ";
    font-family: FontAwesome;
    position: absolute;
    top: 0px;
    left: -15px;
    background-image: url(../img/check.png);
    width: 15px;
    height: 15px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .showcase-content .btn-grp{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
  }
  .showcase-content .btn-grp .btn{
    font-size: 16px;
    padding: 20px 15px;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(125.7deg, rgb(0 65 217) 25.43%, rgb(16 32 102) 74.38%);;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    transition: .2s linear;
    color: #fff;    
    border: 1px solid var(--primary-color);
    border-bottom: none;
    border-right: none;
  }
  .showcase-content .btn-grp .btn:hover{
    background: linear-gradient(303deg, rgb(0 65 217) 25.43%, rgb(16 32 102) 74.38%);
    -webkit-backdrop-filter: blur(20px);
  }
  .showcase-content .pulse{
    animation: pulse 5s infinite;
    animation-delay: var(--s);
    font-size: 22px;
    padding: 10px 0;
    width: 44px;
    height: 44px;
    line-height: 1;
    text-align: center;
  }
  .heroimgcont {
    height: 100%;
    position: relative;
  }
  .heroimgcont .heroitems{
    overflow: hidden;
    animation: slowbounce 5s infinite;
  }
  .heroimgcont .heroitems .heroitemimg{
    width: 550px;
    margin: 0 0 0 auto;
    max-width: 100%;
  }
  .pts{

  }
  .pts .flxcontrol{
    align-items: flex-start;
    justify-content: space-between;
    height: unset;
    overflow: visible;
  }
  .pts .pts-box{
    position: relative;
    width: 28%;
    margin: 30px 0px;
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    transition: .5s;
    background: linear-gradient(125.7deg,rgb(255 255 255 / 15%) 25.43%,rgb(255 255 255 / 5%) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    background: var(--primary-color);
    backdrop-filter: blur(20px);
    border-radius: 14px;
  }
  .pts .pts-box:hover{
    box-shadow: 0 10px 50px rgb(0 0 0 / 6%);
    /*background: linear-gradient(135deg, rgb(255 255 255 / 22%), rgb(0 72 69 / 46%));*/
    transform: scale(1.03);
  }
  .pts .pts-box:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 104%;
    width: 20%;
    height: 4px;
    border-radius: 5px;
    background: #e2e2e2;
    opacity: 1;
  }
  .pts .pts-box:last-child:after{
    display: none;
  }
  .pts .pts-box:before{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 111.6%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    background: #fff;
    opacity: 1;
    z-index: 1;
    box-shadow: 0 0 0px 4px #ffffff;
  }
  .pts .pts-box:first-child:before{
    display: none;
  }
  .pts .pts-box .icon{
    width: 100%;
    padding: 0 10px;
  }
  .pts .pts-box .icon img{
    max-width: 70px;
    margin: 0 auto;
    transition: .5s;    
    filter: grayscale(1) brightness(10);
  }
  .pts .pts-box:hover .icon img{
    filter: grayscale(1) brightness(10);
  }
  .pts .pts-box .info{
    width: 100%;
  }
  .pts .pts-box .info h3{
    color: #fff;
  }
  .pts .pts-box .info p{
    font-size: 14px;
    opacity: .6;
    color: #fff;
  }
  .pts .pts-box .info .btn{
    margin: 25px 0 10px 0;
  }
/*end*/

/*Section 2i*/
  .section-2i{
    /*overflow: hidden;*/
    z-index: 1;
  }
  .section-2i .sectag{
    color: var(--secondary-color);
    -webkit-text-fill-color: var(--secondary-color);
    -webkit-text-fill-color: rgb(255 255 255 / 60%);
  }
  .section-2i .heading{
    color: #fff;
  }
  .section-2i .swiper-companies{
    overflow: hidden;
  }
  .section-2i .company{
    padding: 0 20px;
  }
  .section-2i .company img{
    width: 100%;
    height: 100px;
    object-fit: contain;
  }
  .section-2i .companis{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    position: relative;
  }
  .section-2i .companis:after{
    content: "";
    background-image: url(../img/circle.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    width: 90%;
    max-width: 675px;
    left: 50%;
    top: 50%;
    aspect-ratio: 1/1;
    transform: translate(-50%, -50%);
  }
  .section-2i:before{
    position: absolute;
    top: 50%;
    left: 50%;
    content: "";
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: radial-gradient(44.63% 44.63% at 50% 50%, rgb(6 69 64 / 89%) 0, rgb(7 43 37 / 75%) 43.02%, #001917 100%);
    background: var(--primary-color);
    z-index: -1;
    width: 100%;
    height: 100%;
    opacity: 1;
    border-radius: 70px;
  }
/*end*/

/*Section 2*/
  .section-2{
    background: linear-gradient(0deg, rgb(255 255 255 / 50%), rgb(255 255 255 / 70%), rgb(255 255 255 / 80%), rgb(255 255 255 / 70%), rgb(255 255 255 / 50%), rgb(255 255 255 / 0%));
  }
  .section-2 .flxcontrol{
    align-items: stretch
  }
  .section-2 .sectag{
    position: relative;
    font-weight: 500;
    font-size: 20px;
    background: linear-gradient(108deg, #4d84ff, var(--primary-color), #0827aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    display: inline-block;
  }
  .abtinfobox .btn{
    position: relative;
    font-size: 16px;
    padding: 20px 15px;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(125.7deg, rgb(0 63 218 / 10%) 25.43%, rgb(0 63 218 / 10%) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-bottom: none;
    border-right: none;
    align-items: center;
    justify-content: center;
    transition: .2s linear;
    color: var(--primary-color);
    overflow: hidden;
  }
  .abtinfobox .btn:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -50%;
    transform: translateX(-50%);
    width: 35%;
    height: 110%;
    border-radius: 100%;
    background: #0a46db;
    background: linear-gradient(90deg, #0072ff 6.6%, #003fda 94.33%), linear-gradient(0deg, #071a66, #003fda);
    -webkit-filter: blur(20px);
    filter: blur(20px);
    z-index: -1;
    transition: .5s;
  }
  .abtinfobox .btn:hover{
    color: #fff;
  }
  .abtinfobox .btn:hover:after{
    transform: translateX(-50%) scale(1.20);
    left: 30%;
    bottom: -25%;
    width: 110%;
  }
  .workimgs{
    position: relative;
    z-index: 1;
  }
  .workimgs .img2{
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgb(0 0 0 / 14%);
  }
  .workimgs .vidon:after{
    content: "\f04b";
    font-family: FontAwesome;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    text-align: center;
    padding: 15px 0 15px 5px;
    font-size: 30px;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    opacity: .7;
    transition: .5s;
  }
  .workimgs .vidon:hover:after{
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  .abtinfobox p{
    margin-bottom: 30px;
    color: var(--secondary-color);
    opacity: .8;
  }
  .abtinfobox blockquote{
    position: relative;
    border-left-color: transparent;
    margin-left: 0;
    font-size: unset;
  }
  .abtinfobox blockquote:before{
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 85%;
    width: 4px;
    box-shadow: -3px 3px 7px 0 rgb(251 176 52 / 20%);
    background-color: #0000;
    background-image: linear-gradient(340deg ,var(--primary-color) 8%,#fbb034 100%);
  }
  .abt_stats{
    min-height: 70vh;
    position: relative;
    font-size: 16px;
    padding: 25px;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(125.7deg,rgb(255 220 220 / 15%) 25.43%,rgb(255 255 255 / 5%) 74.38%);
    background-image: url(../img/bluebg.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-bottom: none;
    border-right: none;
    align-items: center;
    justify-content: center;
    transition: .2s linear;
    color: #fff;
    overflow: hidden;
  }
  .abt_stats:after{
    content: "";
    position: absolute;
    left: 25%;
    bottom: -40%;
    transform: translateX(-50%);
    width: 60%;
    height: 60%;
    border-radius: 100%;
    background: #0a46db;
    background: linear-gradient(90deg, #0072ff 6.6%, #003fda 94.33%), linear-gradient(0deg, #071a66, #003fda);
    -webkit-filter: blur(20px);
    filter: blur(20px);
    z-index: -1;
    transition: .5s;
  }
  .abt_stats:hover:after{
    transform: translateX(-0%) translateY(-50%) scale(1.5);
  }
  .abt_stats h3{
    font-size: 44px;
    font-weight: 600;
    padding: 0px 20px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(255 255 255 / 13%);
  }
  .abt_stats ul{
    
  }
  .abt_stats ul li{
    margin-bottom: 35px;
    position: relative;
    list-style: none;
    padding-left: 20px;
  }
  .abt_stats ul li:before {
    position: absolute;
    top: 0px;
    left: -30px;
    width: 40px;
    height: 40px;
    content: "";
    background: url(../img/favicon-w.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50%;
    z-index: 1;
  }
  .abt_stats ul li:after {
    position: absolute;
    top: 1px;
    left: -32px;
    width: 40px;
    height: 40px;
    content: "";
    background: var(--primary-color);
    background-position: 50%;
    z-index: -1;
    border-radius: 50%;
    z-index: -1;
  }
  .abt_stats ul li h4{
    font-size: 32px;
    font-weight: 600;
  }
  .abt_stats ul li p{
    font-weight: 300;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.3;
    opacity: .8;
  }
/*end*/

/*Course section*/
  .courses-sec{
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .courses-sec .container:before, .courses-sec .container:after{
    content: "";
    z-index: 2;
    width: 100%;
    height: 100%;
    background: #011413;
    position: absolute;
    top: 0;
  }
  .courses-sec .container:before{
    left: -95%;
    background: linear-gradient(90deg, #ffffff 82%, #ffffff 10%, rgb(1 20 19 / 0%));
  }
  .courses-sec .container:after{
    right: -95%;
    background: linear-gradient(-90deg, #ffffff 82%, #ffffff 10%, rgb(1 20 19 / 0%));
  }
  .courses-sec .sectag img{
    display: inline-block;
    width: 70px;
    margin-bottom: 5px;
    margin-right: 10px;
  }
  .swiper-courses{
    overflow-x: hidden;
    padding: 0 15px;
    overflow: visible;
  }
  .swiper-courses .swiper-pagination-bullet-active{
    background: var(--primary-color);
  }
  .swiper-courses .swiper-button-next, .swiper-courses .swiper-button-prev{
    color: #fff;
    background: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgb(0 0 0 / 20%);
  }
  .swiper-courses .swiper-button-next:after, .swiper-courses .swiper-button-prev:after{
    font-size: 24px;
  }
  .swiper-courses .swiper-pagination{
    bottom: -10px !important;
  }
  .course-box{
    background: #fff;
    padding: 0 0 10px 0;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgb(1 20 19 / 40%);
    margin: 15px 0;
    overflow: hidden;
    height: 100%;
  }
  .swiper-courses .swiper-slide:nth-child(odd) .course-box{
    margin-top: 70px;
  }
  .course-box:hover{
    transform: translateY(-10px);
    box-shadow: 0 7px 70px rgb(0 63 218 / 28%);
    z-index: 2;
  }
  .course-box .thumbimg{
    border-radius: 0px;
    overflow: hidden;
    text-align: center;
  }
  .course-box .thumbimg img{
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }
  .course-box .infocont{
    padding: 0 15px;
  }
  .course-box .infocont h3{
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    min-height: 40px;
  }
  .course-box .infocont hr{
    margin: 10px 0;
  }
  .course-box .infocont p{
    font-size: 12px;
    color: gray;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .course-box .infocont p span{
    color: var(--secondary-color);
    font-weight: 500;
  }
  .course-box .infocont p span del{
    display: block;
    font-size: 10px;
    text-align: right;
    color: #ff3c70;
  }
  .course-box .infocont p span ins{
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--txtcolor3);
  }
  .course-box .infocont .btn{
    font-size: 14px;
    padding: 6px 24px;
  }
  .didntfind{
    text-align: center;
    color: #fff;
    background-color: var(--primary-color);
    padding: 50px 15px 70px 15px;
    background-image: url(../img/bluebg.png);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
  }
  .didntfind .infocont h3{
    color: #fff;
  }
  .didntfind .infocont p{
    color: rgb(255 255 255 / 70%);
    margin-top: 15px;
  }
  .didntfind .infocont .btn{
    margin-top: 30px;
    width: auto;
    padding: 10px 15px;
    border-radius: 7px;
  }
/*end*/

/*Gallery*/
  .section-gallery{

  }
  .sectag{

  }
  .galleryimgs{

  }
  .galleryimgs .swiper-slide{
    transform: scale(.8);
    opacity: .5;
    transition: .3s;
  }
  .galleryimgs .swiper-slide.swiper-slide-active{
    transform: scale(1);
    opacity: 1;
  }
  .galleryimgs .gll_img{
    overflow: hidden;
    border-radius: 15px;
    border-top: 1px solid rgb(255 255 255 / 14%);
    border-left: 1px solid rgb(255 255 255 / 14%);
  }
/*end*/

/*Team*/
  .team{

  }
  .team_mm{
    position: relative;
    background: linear-gradient(30deg, rgb(68 68 68 / 18%), rgb(199 199 199 / 12%));
    color: #fff;
    padding: 50px 25px;
    border-radius: 20px;
    overflow: hidden;
    border-top: 1px solid rgb(255 255 255 / 16%);
    border-left: 1px solid rgb(255 255 255 / 16%);
    border-bottom: 1px solid rgb(255 255 255 / 16%);
    margin-bottom: 30px;
  }
  .team_mm:after, .team_mm:before{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    box-sizing: border-box;
    box-shadow: 0 0 160px 130px rgb(7 26 102), 0 0 200px 160px rgb(7 26 102), 0 0 300px 260px rgb(0 63 218), 0 0 650px 460px rgb(0 63 218);
    z-index: -1;
    transition: 1s;
  }
  .team_mm:after{
    top: -30%;
    left: -10%;
  }
  .team_mm:before{
    bottom: -30%;
    right: -50%;
  }
  .team_mm:hover:after{
    top: -12%;
    left: 100%;
  }
  .team_mm:hover:before{
    bottom: -45%;
    right: 90%;
  }
  .team_mm .mm_img{
    width: 120px;
    height: 120px;
    margin: 0 auto 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .team_mm .mm_info h3{
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: rgb(255 255 255 / 100%);
  }
  .team_mm .mm_info h4{
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: rgb(255 255 255 / 40%);
  }
  .team_mm .mm_social{
    margin-top: 30px;
  }
  .team_mm .mm_social ul{
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .team_mm .mm_social li{
    display: inline-block;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid rgb(255 255 255 / 17%);
    padding: 4px;
    border-radius: 12px;
    margin: 5px;
    color: #ffffff;
    background: var(--secondary-color);
  }
  .team_mm .mm_social li:hover{
    color: #fff;
    border-color: #fff;
    background: var(--primary-color);
  }
/*end*/

/*Section 3*/
  .section-3{    
    width: 100%;
    position: relative;
    z-index: 1;
    background: url(../img/bg3.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .section-3 .flxcontrol{
    align-content: flex-start;
    align-items: stretch;
    justify-content: space-between;
    overflow: hidden;
  }
  .section-3 .flxcontrol .col-md-6.col-sm-6{
    width: calc(50% - 40px);
    margin-bottom: 80px;
    position: relative;
  }
  .section-3 .flxcontrol .col-md-6.col-sm-6:after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(44%);
    left: 90%;
    width: 160px;
    height: 100px;
    z-index: 2;
  }
  .section-3 .flxcontrol .col-md-6.col-sm-6:last-child:after{
    display: none;
  }
  .section-3 .flxcontrol .col-md-6.col-sm-6:nth-child(even):after{
    background: url(../img/joining1.png) no-repeat center center/cover;
  }
  .section-3 .flxcontrol .col-md-6.col-sm-6:nth-child(odd):after{
    background: url(../img/joining2.png) no-repeat center center/cover;
    width: 500px;
    height: 89px;
    left: 50%;
    top: 98%;
    transform: translateX(-100%);
  }
  .section-3 .sec3item{
    padding: 20px;
    background: #fff;
    border-top: 20px solid var(--primary-color);
    border-radius: 15px ;
    box-shadow: 0 5px 40px rgb(0 0 0 / 5%);
    height: 100%;
  }
  .section-3 .sec3item .icon{
    font-size: 90px;
    font-weight: 900;
    padding: 0px 0 10px;
    color: rgb(243 243 243);
  }
  .section-3 .sec3item .infocont{
    padding: 0 15px;
  }
  .section-3 .sec3item h3{
    margin-top: 5px;
    font-weight: 600;
  }
  .section-3 .sec3item p{
    color: gray;
  }
  .section-3 .sec3item .btn{
    margin-top: 20px;
    color: #858585;
    font-size: 15px;
  }
  .section-3 .sec3item .btn:hover{
    box-shadow: 0 2px 20px rgb(0 0 0 / 8%);
    background: #cecece;
    color: #5e5e5e;
    transform: scale(1.02);
  }
  .section-3 .sec3item:hover{
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgb(0 0 0 / 0.1);
    border-bottom-color: var(--primary-color);
    z-index: 2;
  }
  .section-3 .sec3item:hover .icon{
    color: var(--primary-color);
    /*opacity: .5;*/
  }
  .section-3 .sec3item:hover h3{
    color: var(--primary-color);
  }
  .section-3 .sec3item:hover p{
    
  }
/*end*/

/*section 4*/
  .section-4{
    overflow: hidden;
    position: relative;
  }
  .section-4 .heading:after{
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 60px;
    height: 6px;
    border-radius: 5px;
    background: var(--primary-color);
  }
  .section-4 .flxcontrol{
    align-items: stretch;
  }
  .section-4 .row>.flxcontrol{
    padding: 60px 40px 40px 40px;
    background: linear-gradient(227deg, #525255, #1d1d28);
    border-radius: 20px;
    position: relative;
    z-index: 1;
  }
  .section-4 .row>.flxcontrol:after{
    content: "";
    background-image: url(../img/footer_img_1.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 500px;
    height: 500px;
    z-index: -1;
    opacity: .15;
  }
  .section-4 .flxcontrol .col-md-3{
    padding: 0;
  }
  .section-4 .itemcont{
    margin-bottom: 30px;
  }
  .sec4item{
    position: relative;
    padding: 20px 20px 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(125.7deg, rgb(0 74 255) 25.43%, rgb(0 63 218) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    transition: .2s linear;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 15%);
    border-right: none;
  }
  .sec4item .icon{
    width: 70px;
    padding: 0 8px;
  }
  .sec4item .icon svg{
    
  }
  .sec4item .icon img{
    /*border-radius: 5px;*/
    /*box-shadow: 0 3px 10px rgb(0 0 0 / 6%);*/
    filter: grayscale(0) invert(1) brightness(100);
  }
  .sec4item:hover .icon img{
    filter: grayscale(0) brightness(10);
  }
  .sec4item .infocont{
    width: calc(100% - 70px);
    padding-left: 25px;
  }
  .sec4item .infocont h3{
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-top: 0;
  }
  .sec4item .infocont p{
    font-weight: 400;
    font-size: 14px;
    color: rgb(255 255 255 / 80%);
    margin-bottom: 0;
    line-height: 1.3;
  }
  .sec4item:hover{
    box-shadow: 0 5px 40px rgb(0 0 0 / 10%);
    transform: scale(1.05);
    transition: all .3s ease-out;
    /*background: #fff;*/
    z-index: 2;
  }
/*end*/

/*Section 5*/
  .section-5{
    position: relative;
    /*overflow: hidden;*/
    z-index: 1;
    background-image: url(../img/bg2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center right;
  }
  .section-5:before{
    content: "";
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    position: absolute;
    width: 125%;
    height: 50px;
    background: linear-gradient(90deg, #0dbcfa, #003fda, #51cbfb);
    -webkit-filter: blur(8px);
    filter: blur(8px);
    z-index: 2;
    opacity: var(--show);
  }
  .section-5:after{
    content: "";
    left: -5%;
    top: 30%;
    position: absolute;
    width: 10%;
    min-width: 200px;
    height: 50%;
    border-radius: 100%;
    background: linear-gradient(90deg, #004aff 6.6%, #003fda 94.33%), linear-gradient(0deg, #071a66, #003fda);
    -webkit-filter: blur(100px);
    filter: blur(100px);
    z-index: -1;
    opacity: .4;
  }
  .section-5 .flxcontrol{
    align-items: flex-start
  }
  .section-5 .itemcont{
    margin-bottom: 30px;
    padding: 0;
  }
  .sec5item{
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 25px;
  }
  .sec5item .thumbimg{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 7px rgb(0 0 0 / 12%);
  }
  .sec5item .thumbimg img{
    width: 100%;
    transition: .8s;
  }
  .sec5item:hover .thumbimg img{
    transform: scale(1.1);
  }
  .sec5item .thumbimg .pricerng{
    position: absolute;
    z-index: 1;
    bottom: 7px;
    color: #fff;
    left: 7px;
    background: var(--primary-color);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
  }
  .sec5item .thumbimg .pricerng .amount{
    font-weight: 600;
  }
  .sec5item .thumbimg .pricerng ins{
    text-decoration: none;
  }
  .sec5item .thumbimg .pricerng del{
    float: right;
    margin-left: 5px;
    font-size: 10px;
    font-weight: normal;
    position: relative;
    top: 3px;
  }
  .sec5item .thumbimg .pricerng del .amount{
    font-weight: normal;
  }
  .sec5item:hover h3{
    color: var(--primary-color);
  }
  .sec5item .infocont .arrwbtn button{
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 500;
    color: var(--secondary-color);
    background: #ffdead;
    background-image: none!important;
  }
/*end*/

/*Section 6*/
  .section-6{
    overflow: hidden;
    position: relative;
  }
  .bgvid{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding-bottom: 56.4%;
    width: 100%;
    z-index: -1;
  }
  .bgvid iframe{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
  .section-6 .flxcontrol{
    min-height: 70vh;
    align-content: center;
  }
  .section-6 .heading{
    margin-bottom: 15px;
  }
/*end*/

/*Section 7*/
  .section-7{
    overflow: hidden;
  }
  .sec7item{
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: stretch;
    padding: 60px 15px 60px 15px;
    transition: all .3s ease-out;
    /*background: linear-gradient(25deg, rgb(0 0 0), rgb(88 35 69));*/
    border-radius: 15px;
    text-align: center;
    overflow: visible;
  }
  .sec7item .thumbimg{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 15px solid #fff;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
  .sec7item .hdingcont{
    width: 100%;
    padding: 0 15px;
  }
  .sec7item .hdingcont h3{
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
  }
  .sec7item .hdingcont .ratings:after{
    content: "\f005\00a0\f005\00a0\f005\00a0\f005\00a0\f005";
    color: #FFC107;
    font-family: FontAwesome;
    font-size: 16px;
  }
  .sec7item .infocont{
    width: 100%;
    padding: 10px 0px;
    color: var(--secondary-color);
  }
  .sec7item .infocont p{
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: rgb(255 255 255 / 80%);
    margin-bottom: 0;
    line-height: 1.3;
  }
  .sec7item:hover{
    box-shadow: 0 5px 40px rgb(0 0 0 / 10%);
  }
  .tsti_bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border-radius: 15px;
  }
  .tsti_bg:before, .tsti_bg:after{
        position: absolute;
    content: "";
    width: 0;
    height: 0;
    box-sizing: border-box;
    transition: 1.5s;
    box-shadow: 0 0 160px 130px rgb(0 63 218), 0 0 200px 160px rgb(0 63 218), 0 0 300px 260px rgb(0 51 255), 0 0 650px 460px rgb(0 94 255 / 65%);
  }
  .tsti_bg:before{
    bottom: -10%;
    right: 25%;
  }
  .tsti_bg:after{
    top: -10%;
    left: 1%;
  }  
  .sec7item:hover .tsti_bg:before{
    bottom: -40%;
    right: 70%;
  }
  .sec7item:hover .tsti_bg:after{
    top: -45%;
    left: 85%;
  } 
  .section-7 .swiper-slide{
    transform: scale(.7);
    opacity: .5;
    transition: .3s;
    filter: blur(25px);
  }
  .section-7 .swiper-slide.swiper-slide-active{
    transform: scale(1);
    opacity: 1;
    filter: none;
  }
  .section-7 .sec7pagination{
    bottom: -30px;
  }
  .section-7 .sec7pagination .swiper-pagination-bullet{
    background: var(--primary-color);
  }
/*end*/

/*section 8*/
  .section-8{
    overflow: hidden;
    background: linear-gradient(0deg, rgb(255 255 255) 2%, rgb(250 253 255) 18%, rgb(223 242 255 / 59%) 80%);
    border-top-right-radius: 20vw;
  }
  .section-8 .flxcontrol{
    align-items: flex-start;
  }
  .section-8 .panel-group{
    max-width: 100%;
    width: 800px;
    margin: 0 auto;
  }
  .section-8 .panel{
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 13px;
    background: rgb(0 0 0 / 0%);
  }
  .section-8 .panel-heading{
    padding: 0;
    background: transparent;
  }
  .section-8 .panel-heading h4{
    
  }
  .section-8 .panel-heading h4 a{
    position: relative;
    display: block;
    padding: 5px 15px 5px 50px;
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
    color: var(--primary-color);
  }
  .section-8 .panel-heading h4 a[aria-expanded="true"]{
    background: rgb(0 0 0 / 0%);
  }
  .section-8 .panel-heading h4 a:after{
    content: "\f107";
    font-family: FontAwesome;
    font-size: 20px;
    color: white;
    transform: translateY(-50%);
    background: linear-gradient(155deg, #003fda, #071a66 102.05%), #fff;
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 40px;
    opacity: 1;
    transition: .2s linear;
    z-index: 1;
    border-radius: 50%;
    text-align: center;
  }
  .section-8 .panel-heading h4 a[aria-expanded="true"]:after{
    content: "\f106";
  }
  .section-8 .collapse.in{
    padding-left: 50px;
  }
  .section-8 .panel-body{
    padding: 15px 15px 15px 15px;
    font-weight: 300;
    font-size: 16px;
    color: rgb(255 255 255);
    margin-bottom: 0;
    line-height: 1.3;
    background: linear-gradient(125.7deg, rgb(186 186 186 / 26%) 25.43%, rgb(255 255 255 / 5%) 74.38%);
    background: var(--primary-color);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    border: 1px solid rgb(16 32 102) !important;
    position: relative;
    z-index: 1;
  }
  .section-8 .panel-body:after{
    content: "";
    right: 100%;
    top: 0;
    position: absolute;
    width: 31px;
    height: 50%;
    border-left: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    border-bottom-left-radius: 5px;
    z-index: -1;
    opacity: .5;
  }
/*end*/

/*Section 9*/
  .section-9{
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .section-9 .flxcontrol{
    position: relative;
    background: linear-gradient(30deg, rgb(68 68 68 / 18%), rgb(199 199 199 / 12%));
    background: var(--primary-color);
    color: #fff;
    padding: 50px 25px;
    border-radius: 20px;
    overflow: hidden;
    border-top: 1px solid rgb(255 255 255 / 16%);
    border-left: 1px solid rgb(255 255 255 / 16%);
    border-bottom: 1px solid rgb(255 255 255 / 16%);
  }
  .section-9 .flxcontrol:after, .section-9 .flxcontrol:before{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    box-sizing: border-box;
    box-shadow: 0 0 160px 130px rgb(7 26 102), 0 0 200px 160px rgb(7 26 102), 0 0 300px 260px rgb(7 26 102), 0 0 650px 460px rgb(7 26 102 / 0%);
    z-index: -1;
  }
  .section-9 .flxcontrol:after{
    top: 0%;
    left: 25%;
  }
  .section-9 .flxcontrol:before{
    bottom: -40%;
    right: 10%;
  }
  .section-9 h2{
    position: relative;
    margin: 25px 0 35px;
    font-size: 58px;
    font-weight: 600;
  }
  .section-9 h2:after{
    content: "";
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 60px;
    height: 10px;
    border-radius: 5px;
    background: var(--secondary-color);
  }
  .section-9 .unsetpos{
    border-left: 1px solid #b9b9b9;
  }
  .section-9 .unsetpos p{
    font-weight: 300;
    font-size: 15px;
    line-height: 32px;
    color: rgb(255 255 255 / 80%);
    margin-bottom: 0;
    line-height: 1.4;
  }
  .section-9 .unsetpos .btn{
    position: relative;
    font-size: 16px;
    min-width: 150px;
    padding: 20px 30px;
    box-sizing: border-box;
    cursor: pointer;
    background: linear-gradient(125.7deg, rgb(255 255 255 / 20%) 25.43%, rgb(255 255 255 / 20%) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-bottom: none;
    border-right: none;
    align-items: center;
    justify-content: center;
    transition: .2s linear;
    color: #fff;
    overflow: hidden;
  }
  .section-9 .unsetpos .btn:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -80%;
    transform: translateX(-50%);
    width: 60%;
    height: 150%;
    border-radius: 100%;
    background: #071860;
    background: linear-gradient(90deg, #00166c 6.6%, #03155c 94.33%), linear-gradient(0deg, #071a66, #003fda);
    -webkit-filter: blur(30px);
    filter: blur(30px);
    z-index: -1;
    transition: .5s;
  }
  .section-9 .unsetpos .btn:hover:after{    
    transform: translateX(-50%) scale(1.5);
  }
/*end*/

/*Section 10*/
  .hmcont{

  }
  .hmcont .flxcontrol{
    
  }
  .hmcont .flxcontrol .flxcontrol{
    background: #fffdf8;
    padding: 20px;
    border-radius: 20px;
  }
  .hmcont h3{
    font-size: 32px;
    margin-top: 0;
  }
  .hmcont .continfo{
    border: 2px solid var(--secondary-color);
    padding: 15px;
    margin-bottom: 10px;
    position: relative;
  }
  .hmcont .continfo:after{
    content: "";
    position: absolute;
    right: calc(0% - 5px);
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 80%;
    background: var(--primary-color);
    border-radius: 5px;
  }
  .hmcont .continfo p{
    max-width: 240px;
    margin: 0 0 10px auto;
  }
  .hmcont .ctnmail{
    color: var(--secondary-color);
    font-weight: 500;
  }
  .hmcont .contmap{
    position: relative;
    padding-bottom: 56.4%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px #00000012;
  }
  .hmcont .contmap iframe{
    position: absolute;
    width: 100%;
    height: 100%;
  }
/*end*/

/*Defaut page baanr*/
  .ldsec1{
    position: relative;
    z-index: 1;
    color: white;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(25 27 37 / 65%);
    background-blend-mode: overlay;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
  }
  .flx{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    min-height: calc(60vh - 75px);
  }
  .flxcont{
    text-align: center;
  }
  .flxcont h1{
    font-size: 50px;
    font-weight: 700;
    margin-top: 0;
  }
/*end*/

/*My account*/
  .woocommerce-MyAccount-navigation ul {
    white-space: nowrap;
    width: 100%;
    overflow-x: auto;
    padding: 0;
    background: #ededed;
    border-radius: 5px;
  }
  .woocommerce-MyAccount-navigation ul li {
    list-style: none;
    display: inline-block;
    padding: 5px 10px;
    margin: 3px;
  }
  .woocommerce-MyAccount-navigation ul li a {
    color: #000;
  }
  .woocommerce-MyAccount-navigation ul li.is-active {
    background: var(--primary-color);
    border-radius: 3px;
  }
  .woocommerce-MyAccount-navigation ul li.is-active a {
    color: white;
  }
  .woocommerce form .form-row .input-checkbox {
    margin: 5px 0px 0px 0;
    transform: scale(1.2);
  }
  .woocommerce-terms-and-conditions-checkbox-text {
    display: inline-block;
    padding-left: 20px;
    line-height: 1.4;
  }
  .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border: 2px solid var(--secondary-color);
    border-radius: 0px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
  #customer_login .u-column1 h2, #customer_login .u-column2 h2{
    text-align: center;
    font-size: 18px;
  }
  #customer_login .woocommerce-form button[type="submit"]{
    width: 100%;
    padding: 12px 15px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
  }
  .woocommerce #customer_login form label{
    font-weight: normal;
    font-size: 14px;
    color: var(--primary-color);
  }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content{
    width: 100%;
    float: unset;
  }
  .woocommerce-account .woocommerce-MyAccount-content{
    padding: 10px;
  }
  .checkout.woocommerce-checkout img{
    background: white!important;
  }
/*End*/

/*Contact info*/
  .contact_info{

  }
  .contact_info .sectag{
    /*background: linear-gradient(343.27deg,#fd5900,#ffde00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;*/
  }
  .contact_info .heading{
    
  }
  .contact_info .heading span{
    /*background: linear-gradient(343.27deg, #fd5900, #ffde00); */
    color: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary-color);
    background-clip: text;
    text-fill-color: transparent;
  }
  .contact_info .flxcontrol{

  }
  .cntt_box{
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(125.7deg,rgb(255 220 220 / 15%) 25.43%,rgb(255 255 255 / 5%) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 15%);
    border-bottom: none;
    border-right: none;
    background: var(--primary-color);
    margin-bottom: 30px;
  }
  .cntt_box.bx_2{
    background: var(--secondary-color);
  }
  .cntt_box:after, .cntt_box:before{
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    box-sizing: border-box;
    box-shadow: 0 0 160px 130px rgb(255 171 0 / 82%), 
                0 0 200px 160px rgb(255 183 0 / 82%), 
                0 0 300px 260px rgb(255 171 0 / 59%), 
                0 0 650px 460px rgba(221,108,121,.05);
    z-index: -1;
    transition: 1.5s;
  }
  .cntt_box:after{
    bottom: -10%;
    right: 25%;
  }
  .cntt_box:before{
    top: -10%;
    left: 1%;
  }
  .cntt_box:hover:after{
    bottom: 80%;
    right: 20%;
  }
  .cntt_box:hover:before{
    top: 80%;
    left: 1%;
  }
  .cntt_box.bx_1:after{
    box-shadow: 0 0 100px 130px #102066, 
                0 0 130px 100px #0033ff, 
                0 0 240px 220px #001e9f, 
                0 0 840px 460px rgb(0 101 255 / 5%);
  }
  .cntt_box.bx_2:after{
    box-shadow: 0 0 100px 130px #004bff,
                0 0 130px 100px #0041d9, 
                0 0 240px 220px #0041d9, 
                0 0 840px 460px rgba(225, 114, 132, .05);
  }
  .cntt_box.bx_1:before{
    box-shadow: 0 0 100px 130px #102066, 
                0 0 130px 100px #0033ff, 
                0 0 240px 220px #001e9f, 
                0 0 840px 460px rgb(0 101 255 / 5%);
  }
  .cntt_box.bx_2:before{
    box-shadow: 0 0 100px 130px #004bff,
                0 0 130px 100px #0041d9, 
                0 0 240px 220px #0041d9, 
                0 0 840px 460px rgba(225, 114, 132, .05);
  }
  .cntt_box img{
    width: 95px;
    margin: 80px auto;
  }
  .cntt_box h3{
    margin-bottom: 80px;
    margin-top: 0;
    color: #fff;
  }
/*end*/

/*Footer*/
  footer{
    position: relative;
    padding: 0px 0 0;
    z-index: 1;
    background: var(--primary-color);
    margin-top: 60px;
    border-top-left-radius: 8vw;
    border-top-right-radius: 8vw;
    overflow: hidden;
    /*box-shadow: 0px -5px 50px 19px #011413;*/
  }
  footer:after{
    content: "";
    background-image: url(../img/bg_footer_2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .05;
    z-index: -1;
  }
  .fbraning img{
    max-width: 180px;
  }
  .fnote h3{
    margin-top: 0;
  }
  .fsocial ul{
    padding: 0;
  }
  .fsocial li{
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 40px;
    height: 40px;
    color: #fff;
    padding: 7px 0 0;
    font-size: 18px;
    margin: 10px 2px 10px 0px;
    text-align: center;
    background: linear-gradient(125.7deg,rgb(255 220 220 / 15%) 25.43%,rgb(255 255 255 / 5%) 74.38%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    border: 1px solid rgb(255 255 255 / 15%);
  }
  .fsocial li:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: -80%;
    transform: translateX(-50%);
    width: 50%;
    height: 120%;
    border-radius: 100%;
    background: var(--secondary-color);
    background: linear-gradient(90deg, #071a66 6.6%, #0a2178 94.33%), linear-gradient(0deg, #071a66, #071a66);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    z-index: -1;
    transition: .5s;
  }
  .fsocial li:hover:after{
    left: 50%;
    bottom: -10%;
    width: 80%;
    height: 110%;
  }
  .fsocial li:hover{
    color: #fff;  
    transform: scale(1.2);
  }
  .fpoints h3{
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 20px;
    display: none;
  }
  .fpoints ul{
    padding: 0;
    margin: 0;    
    text-align: center;
  }
  .fpoints li{
    position: relative;
    list-style: none;
    margin-bottom: 6px;
    padding: 3px 0 3px 15px;
    border-radius: 5px;
    display: inline-block;
  }
  .fpoints li:hover{
    /*background: gainsboro;*/
  }
  .fpoints li:after{
    /*content: "";
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
    height: 5px;
    width: 5px;
    opacity: 1;
    background-color: var(--primary-color);
    transition: .8s;*/
  }
  .fpoints li:hover:after{
    transform: translateY(-50%) scale(2);
    border-radius: 50%;
  }
  .fpoints li a{
    color: rgb(255 255 255 / 70%);
    display: block;
  }
  .fpoints li:hover a{
    /*font-weight: 500;*/
    color: #fff;
  }
  .ftb{
    border-top: 1px solid rgb(255 255 255 / 25%);
    padding: 30px 0;
    margin-top: 35px;
  }
  .ftb p span{
    color: black;
    padding: 5px;
    margin: 0 10px;
  }
  .ftb p strong, .ftb p b{
    font-weight: 400;
    color: #fff;
  }
  .cpyrgt p{
    font-weight: 300;
    font-size: 14px;
    color: rgb(255 255 255 / 60%);
  }
  .cpyrgt a{
    font-weight: 300;
    font-size: 14px;
    color: rgb(255 255 255 / 60%);
  }
/*Footer end*/

/*extra*/
  .slideanim {
    opacity: 0;
    visibility:hidden;
    transition: .3s ease-in-out;
  }
  .slidelrmain {
    opacity: 0;
    visibility:hidden;
    transition: .3s ease-in-out;
  }
  .sliderlmain {
    opacity: 0;
    visibility:hidden;
    transition: .3s ease-in-out;
  }
  .slide {
    animation-name: slide;
    -webkit-animation-name: slide;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    opacity: 1;
    animation-delay: var(--d);
    transition: .3s ease-in-out;
  }
  .slidelr {
    animation-name: slidelr;
    -webkit-animation-name: slidelr;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
  }
  .sliderl {
    animation-name: sliderl;
    -webkit-animation-name: sliderl;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    visibility: visible;
    opacity: 1;
    transition: .3s ease-in-out;
  }
/*end*/

/*Animations*/
  @keyframes slide {
    0% {
      visibility:hidden;
      transform: translateY(70%);
    } 
    100% {
      visibility: visible;
      transform: translateY(0%);
    }
  }
  @-webkit-keyframes slide {
    0% {
      opacity: 0;
      visibility:hidden;
      -webkit-transform: translateY(-70%);
    } 
    100% {
      opacity: 1;
      visibility: visible;
      -webkit-transform: translateY(0%);
    }
  }
  @keyframes slidelr {
    0% {
      opacity: 0;
      transform: translateX(-70%);
    } 
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @-webkit-keyframes slidelr {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateX(0%);
    }
  }
  @keyframes sliderl {
    0% {
      opacity: 0;
      transform: translateX(70%);
    } 
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @-webkit-keyframes sliderl {
    0% {
      opacity: 0;
      -webkit-transform: translateX(70%);
    } 
    100% {
      opacity: 1;
      -webkit-transform: translateX(0%);
    }
  }
  /*pulsh effect*/
  @keyframes pulse{
    0%{
      box-shadow: 0 0 0 0 rgb(255 172 0 / 44%), 0 0 0 0 rgb(255 106 0 / 65%);
    }
    40%{
      box-shadow: 0 0 0 50px rgba(99, 69, 238,0), 0 0 0 0 rgb(255 172 0 / 51%);
    }
    80%{
      box-shadow: 0 0 0 50px rgba(99, 69, 238,0), 0 0 0 30px rgba(99, 69, 238,0);
    }
    100%{
      box-shadow: 0 0 0 0 rgba(99, 69, 238,0), 0 0 0 30px rgba(99, 69, 238,0);
    }
  }
  /* slow bounce effect */
  @keyframes slowbounce{
    0%{
      transform: translateY(0px);
    }
    30%{
      transform: translateY(-10px);
    }
    60%{
      transform: translateY(5px);
    }
    100%{
      transform: translateY(0px);
    }
  }
/*end*/

@media (max-width: 991px){
  body{
    overflow-x: hidden;
  }
  .showcase-content{
    margin-bottom: 140px;
  }
  .workimgs .img1{
    left: -10%;
  }

  /*footer*/
    footer{
      text-align: center;
    }
    .fpoints ul{
      padding: 0;
    }
    .fpoints li{
      display: inline-block;
      padding: 0 10px;
    }
    .fpoints li:after{
      display: none;
    }
    .cpyrgt{
      text-align: center;
    }
    .cpyrgt p{
      font-size: 12px;
    }
  /*end*/
}

@media (max-width: 767px){
  body{
    font-size: 14px;
  }
  .m_off{
    display: none!important;
  }
  .m_on{
    display: block!important;
  }

  .heading{
    font-size: 28px;
  }

  /*Header*/
    header {
      margin-bottom: 81px;
    }
    .navbar{
      background: rgb(255 255 255);
      backdrop-filter: blur(7px);
    }
    .navbar.navbar-default .container{
      display: block;
    }
    .navbar .brand {
      max-width: unset;
      width: unset;
      max-height: 60px;
    }
    .navbar .collapse {
      display: inherit;
    }
    .navbar-collapse.collapse[aria-expanded="false"]{
      visibility: visible;
      opacity: 1;
      margin: 0;
    }
    .navbar-collapse.collapse[aria-expanded="true"]{
      height: calc(100vh - 77px);
    }
    .navbar-default .navbar-toggle:hover .icon-bar{
      /*width: initial;*/
    }
    .navbar-default .navbar-collapse{
      max-height: unset!important;
    }
    .navbar .menu{
      max-height: 100%;
      overflow: auto;
      display: block;
    }
    .navbar .navbar-brand{
      padding-left: 15px;
    }
    .navbar-default .navbar-toggle{
      margin-top: 22px;
      margin-right: 5px;
    }
    .navbar .menu li{
      display: block;
      text-align: center;
      border-radius: 6px;
    }
    .navbar .menu li.account{
      position: fixed;
      top: 42px;
      right: 5px;
      font-size: 26px;
    }
    .navbar .menu .sub-menu{
      position: relative;
      width: 100%;
      top: 0!important;
	  border-radius: 5px;
	  background: rgb(253 253 253 / 10%);
      display: none;
      visibility: visible!important;
      opacity: 1!important;
    }
    .navbar .menu li .sub-menu.active{
      display: block;
    }
    .menu .navcticn.active{
      transform: rotate(180deg);
    }
  /*end*/

  /*Banner*/
    .showcase-content{
      padding-top: 5vh;
      padding-bottom: 5vh;
      margin: 0;
    }
    .showcase .flxcontrol{
      height: unset;
    }
    .heroimgcont .heroitems .heroitemimg{
      margin: 0 auto;
    }
    .showcase-content .btn-grp{
      flex-wrap: wrap;
      justify-content: center;
    }
    .showcase-content .btn-grp a:first-child{
      width: 100%;
      text-align: center;
      margin-bottom: 15px;
    }
    .showcase-content h1.bnrheading{
      font-size: 28px;
      text-align: center;
    }
    .showcase-content p.bnrp{
      font-size: 14px;
    }
    .pts .pts-box {
      width: calc(100% - 30px);
      margin: 30px 15px;
    }
    .pts .pts-box:after {
      top: 101.5%;
      transform: translateX(-50%);
      left: 50%;
      width: 4px;
      height: 50px;
    }
    .pts .pts-box:before {
      top: -12.5%;
      transform: translateX(-50%);
      left: 50%;
      right: unset;
    }
  /*end*/

  /*Section 2*/
    .section-2{
      overflow: hidden;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .abtinfobox .flxcontrol h3{
      font-size: 28px;
    }
    .abtinfobox .flxcontrol {
      justify-content: space-evenly;
    }
  /*end*/

  /*Section 2i*/
    .section-2i .companis{
      min-height: 30vh;
    }
  /*end*/

  /*Section 3*/
    .section-3{
      margin-top: 0;
      margin-bottom: 50px;
    }
    .section-3 .flxcontrol .col-md-6.col-sm-6{
      width: 100%;
    }
    .section-3 .flxcontrol .col-md-6.col-sm-6:after {
      top: 100%!important;
      transform: translateX(-50%) rotate(90deg)!important;
      left: 50%!important;
      width: 95px!important;
      height: 60px!important;
      background: url(../img/joining1.png) no-repeat center center/cover!important;
    }
  /*end*/

  /*Section 4*/
    .section-4{
      margin-top: 0;
      margin-bottom: 30px;
    }
    .section-4 .heading, .section-4 .sectag{
      text-align: center;
    }
    .section-4 .row>.flxcontrol{
      padding: 35px 0px 180px 0px;
      width: calc(100% - 30px);
      margin-left: 15px;
    }
    .section-4 .row>.flxcontrol:after{
      width: 400px;
      height: 400px;
      opacity: .07;
    }
    .sec4item .infocont h3{
      font-size: 16px;
    }
  /*end*/

  /*Section 5*/
    .section-5{
      background-size: 200% 500px;
      background-position: center calc(100% - 20px);
    }
  /*end*/

  /*Section 6*/
    .section-6 .bgvid{
      padding-bottom: 100vh;
    }
    .bgvid iframe{
      min-width: 1900px;
    }
  /*end*/

  /*Section 7*/

  /*end*/

  /*Section 8*/

  /*end*/

  /*Section 9*/
    .section-9{
      padding: 0 15px;
    }
    .section-9 h2{
      margin-top: 0;
    }
    .section-9 .unsetpos{
      border: none;
    }
  /*end*/
}

