*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
	--primary:#0071bd;
	--secondary:#93268f;
	--light:#fff;
	--shadow:0 1px 5p rgba(104, 104, 104, 0.8);
}

/* .indicators{
  margin: 0;
  padding: 0;
  right:30px;
  position: fixed;
  list-style: none;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
}
.indicators li{
  width: 10px;
  height: 10px;
  background: #ccc;
  border: solid var(--secondary) 2px;
  border-radius: 50%;
  margin-top: 10px;
  transition: all 0.3s;
}
.indicators li:hover,
.indicators li .selected{
  transform: scale(1.8);
} */



.scroll-nav{
  position: fixed;
  top:50%; right:30px;
  transform: translateY(-50%);
  z-index: 300;
}

.scroll-nav ul{
  list-style: none;
  padding:0; margin: 0;
}

.scroll-nav ul li{
  width: 200px;
  position: relative;
  text-align: right;
}

.scroll-nav ul li .dot{
  color:#fff;
  display: block;
  padding:2px 0;
  text-transform: capitalize;
}

.scroll-nav ul li .dot span{
  display: inline-block;
  background:var(--secondary);
  letter-spacing: 1px;
  padding:5px 20px;
  margin-right: 30px;
  border-radius: 3px;
  transform: translateX(30px);
  opacity: 0;
}

.scroll-nav ul li:hover .dot span{
  transform: translateX(0px);
  opacity: 1;
}

.scroll-nav ul li .dot span::before{
  content: '';
  position: absolute;
  top:50%; right:0;
  transform: translate(7px, -50%);
  border-left: 7px solid var(--secondary);
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  display: block;
}

.scroll-nav ul li .dot::before,
.scroll-nav ul li .dot::after{
  content: '';
  position: absolute;
  top:50%;
  border-radius: 50%;
  display: block;
  transition: .2s ease-out;
}

.scroll-nav ul li .dot::before{
  height:5px;
  width: 5px;
  border: 2px solid #333;
  right:0;
  transform: translateY(-50%);
}

.scroll-nav ul li .dot.active::before,
.scroll-nav ul li:hover .dot::before{
  border-color: var(--primary);
  background: var(--primary);
  transform: translateY(-50%) scale(1.2);
}

.scroll-nav ul li .dot::after{
  height:15px;
  width: 15px;
  border: 2px solid var(--secondary);
  right:-5px;
  transform: translateY(-50%) scale(0);
}

.scroll-nav ul li .dot.active::after,
.scroll-nav ul li:hover .dot::after{
  transform: translateY(-50%) scale(1.2);
}

/* full screen search display */

.search-wrapper,
.search-data{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.search-wrapper{
  position: fixed;
  height: 0px;
  width: 0px;
  border-radius: 100%;
  background: linear-gradient(-135deg, #c850c0, #4158d0);
  transition: all 0.4s linear;
}
.search-wrapper.active{
  height: 4000px;
  width: 4000px;
}


.search-data{
  position: absolute;
  height: 50px;
  width: 400px;
  display: flex;
  text-align: center;
  /* display: none; */
}
.search-data input{
  height: 100%;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.search-data .line{
  position: absolute;
  height: 3px;
  width: 100%;
  /* background: #fff; */
  bottom: 0;
  transform: scaleX(0);
  transition: transform 0.4s 0.3s linear;
}
.search-data .line.active{
  transform: scaleX(1);
}
.search-data label{
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 20px;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.7);
}
.search-data input:valid ~ label{
  opacity: 0;
}
.search-data span{
  color: #fff;
  position: absolute;
  width: 50px;
  font-size: 25px;
  right: 0;
  top: 0;
  line-height: 45px;
  cursor: pointer;
}
.close-btn{
  position: absolute;
  z-index: 500;
  right: 25px;
  top: 25px;
  font-size: 25px;
  color: #fff;
  cursor: pointer;
}
.search-data, .search-data span,
.search-data label, .close-btn{
  display: none;
}


/*---------- mobile nav styling---------------*/

/* header */
.mobHeader{
    display: none;
}
.mob-header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    z-index: 400;
    top: 0;
  }
  
  .mob-header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #fff;
  }
  
  .mob-header li a {
    display: block;
    padding: 20px 20px;
    border-right: 1px solid #f4f4f4;
    text-decoration: none;
  }
  .mob-header .mob-logo{
    float: left;
    padding: 10px 20px;
  }

  .mob-header .mob-logo img{
    width: 180px;
    height: 60px;
   
}

/* menu */

.mob-header .mob-menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
    background: #3d3d3d;
  }
  /* menu icon */
  .mob-ico{
    float: right;
    padding: 42px 20px;
    position: relative;
    height: 3px;
  }

.mob-header .mob-menu-icon {
    cursor: pointer;
    float: right;
    padding: 50px 20px;
    position: relative;
    user-select: none;
    z-index: -3;
  }
  
  .mob-header .mob-menu-icon .mob-nav-icon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .mob-header .mob-menu-icon .mob-nav-icon:before,
  .mob-header .mob-menu-icon .mob-nav-icon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .mob-header .mob-menu-icon .mob-nav-icon:before {
    top: 5px;
  }
  
  .mob-header .mob-menu-icon .mob-nav-icon:after {
    top: -5px;
  }

  /* menu btn */

.mob-header .mob-menu-btn {
    display: none;
  }
  
  .mob-header .mob-menu-btn:checked ~ .mob-menu {
    max-height: 100%;
  }
  
  .mob-header .mob-menu-btn:checked ~ .mob-menu-icon .mob-nav-icon {
    background: transparent;
  }
  
  .mob-header .mob-menu-btn:checked ~ .mob-menu-icon .mob-nav-icon:before {
    transform: rotate(-45deg);
    top:0;
  }
  
  .mob-header .mob-menu-btn:checked ~ .mob-menu-icon .mob-nav-icon:after {
    transform: rotate(45deg);
    top:0;
  }

  /* menu styling */

  .mob-main-menu li{
    /* border-top: 1px solid #ddd; */
    text-transform: uppercase;
  }
 
  .mob-main-menu li a{
      color: var(--light);
  }
  /* .sub-menu{
      order: 2;
  } */
  .mob-sub-menu li a{
      color: #fff;
  }
  .mob-sub-menu-container{
    padding: 5px 0px;
    font-size: 12px;
    background-color: #3d3d3d;
    height: auto;
    width: 100%;
}
.mob-sub-menu li{
    width: 100%;
    font-size: 14px;

}
.mob{
    align-content: center;
    text-align: center;
}

@media screen and (max-width: 800px){
    .mobHeader{
        display: block;
    }
    nav{
        display: none;
    }
}

/*---------- mobile nav styling ends---------------*/




/*---------- desktop nav styling---------------*/

nav{
    padding: 0;
    z-index: 3;
    width: 100%;
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    top: 0;
    background: #fff;
}
.nav-container{
    display: block;
    padding: 0px 5%;
    width: 100%;
}
.main-nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  padding-top: 10px;
  background: #fff;
  left: 0;
  /* background: url('../img/group-of-businesspeople EDIT@2x.png');
  background-size: contain;
	background-position: center;
  opacity:0.9; */
}

.main-nav ul {
  list-style: none;
  bottom: 0;
}

.main-nav ul li {
  display: inline-block;
  margin-right: 25px;
  margin-bottom: 0px;
}
.main-nav ul li:last-child{
  margin-right: 0px;
}


.main-nav ul li a {
  text-decoration: none;
  margin-bottom: 0px;
  font-size: 15.4px;
  color: var(--secondary);
  position: relative;
  float: right;
  text-transform: uppercase;
  font-weight: bold;
}
.main-menu ul li a:hover{
  color: var(--primary);
}
/* .items:hover{
  border-bottom: 5px solid var(--primary);
} */
.items .active {
  border-bottom: 3px solid var(--primary);
  color: var(--primary);
  padding: 17px 0;
}


.logo{
    flex: 1;
}
.menu{
    flex: 3;
    clear: none;
    max-height: none;
}
.sub-menu{
    padding: 10px 0px;
    font-size: 12px;
    width: 90%;
    position: absolute;
    float: right;
}
.main-menu{
    padding-top: 10px;
}

.sub-menu ul li{
  margin-left:20px;
  display: inline-block;
  font-size: 13px;
}
.sub-menu ul li a:hover{
  color: var(--secondary);
}

.sub-menu ul,
.main-menu ul{
    list-style: none;
    display: flex;
    align-items: center;
    float: right;
}
.logo{
    padding-left: 0px;
    padding-right: 20px;
}
.logo img{
    width: 60%;
    height: 20%;
}
.sub-menu a{
    text-decoration: none;
    color: #2d2d2d;
    
}
.main-menu a{
    text-decoration: none;
    color: var(--secondary);
    text-transform: uppercase;
}

.logo-ul li{
    list-style: none;
}
.fixed{
  position: fixed;
  top: 0;
  z-index: 20;
  padding: 0px 5%;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  padding-top: 9px;
}

/*---------- desktop nav styling ends---------------*/
