@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
:root {
  --skin-color:  #0A192F;
  --skin-color1: #ec9412;
  --skin-color2: #1fc586;
  --skin-color3: #2eb1ed;
  --skin-color4: #cc3a3b;
  --bg-black-900: #000000;
  --bg-black-100: #dddddd;
  --bg-black-50: #eff0f4;
  --text-black-900: #000000;
  --text-black-700: #555555;
  --text-black-600: #666666;
  --text-black-300: #bbbbbb;
  --outer-shadow: 3px 3px 3px #d0d0d0, -3px -3px 3px #f8f8f8;
  --outer-shadow-0: 0 0 0 #d0d0d0, 0 0 0 #f8f8f8;
  --inner-shadow: inset 3px 3px 3px #d0d0d0, inset -3px -3px 3px #f8f8f8;
}
* {
	margin: 0;
	padding: 0;
}
/*----------bootstrap-navbar-css------------*/
.navbar-logo{
	padding: 15px;
	color: #fff;
}
.navbar-mainbg{
	background-color: var(--skin-color);
	padding: 0px;
    position: sticky;
    top: 0;
    z-index: 999;
}
#navbarSupportedContent{
	overflow: hidden;
	position: relative;
}
#navbarSupportedContent ul{
	padding: 0px;
	margin: 0px 25px;
}
#navbarSupportedContent ul li a i{
	margin-right: 10px;
}
#navbarSupportedContent li {
	list-style-type: none;
	float: left;
}
#navbarSupportedContent ul li a{
	color: white;
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 20px 20px;
    transition-duration:0.6s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}
#navbarSupportedContent>ul>li.active>a{
	color:var(--skin-color);
	background-color: transparent;
	transition: all 0.7s;
}
#navbarSupportedContent a:not(:only-child):after {
	content: "\f105";
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 14px;
	display: inline-block;
	padding-right: 3px;
	vertical-align: middle;
	font-weight: 900;
	transition: 0.5s;
}
#navbarSupportedContent .active>a:not(:only-child):after {
	transform: rotate(90deg);
}
.hori-selector{
	display:inline-block;
	position:absolute;
	height: 100%;
	top: 0px;
	left: 0px;
	transition-duration:0.6s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	background-color:var(--bg-black-50);
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	margin-top: 10px;
}
.hori-selector .right,
.hori-selector .left{
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: #fff;
	bottom: 10px;
}
.hori-selector .right{
	right: -25px;
    background-color: var(--bg-black-50);
}
.hori-selector .left{
	left: -25px;
    background-color: var(--bg-black-50);
}
.hori-selector .right:before,
.hori-selector .left:before{
	content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color:var(--skin-color);
}
.hori-selector .right:before{
	bottom: 0;
    right: -25px;
}
.hori-selector .left:before{
	bottom: 0;
    left: -25px;
}

.navbar-expand-custom {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.navbar-expand-custom .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
}
.navbar-expand-custom .navbar-toggler {
    display: none;
}
.navbar-expand-custom .navbar-collapse {
    display: flex;
    justify-content: space-around;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}
/* #hamburger{
    display: none;
} */


@media(min-width: 771px){
	#hamburger{
        display: none;
    }
}


@media (max-width: 770px){
    #navbarSupportedContent{
        display: none;
    }

    .effect-3{
        right: 30px;

    } 
    #first_nav{
        display: none;
    }
}

/*************Alert*********************/

.swal-button{
    background-color: var(--bg-black-50);
    box-shadow: var(--outer-shadow);
    color: var(--skin-color);
    border: none;
}
.swal-text{
    color: var(--text-black-700);
}
.swal-modal{
    background-color: var(--bg-black-50);
}
.swal-icon--success:after, .swal-icon--success:before{
    background: transparent;
}
.swal-icon--success__hide-corners{
    background-color: transparent;
}
.swal-button-container .swal-button:hover{
    background-color: var(--bg-black-50);
    box-shadow: var(--inner-shadow);
}
