@-webkit-keyframes spin {
    from {-webkit-transform:rotate(0deg);}
    to {-webkit-transform:rotate(360deg);}
}
@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}
#cover-spin {
    position:fixed;
    width:100%;
    left:0;right:0;top:0;bottom:0;
    background-color: rgba(255,255,255,0.7);
    z-index:9999;
    display: none;   
}
#cover-spin::after {
    content:'';
    display:block;
    position: absolute;
   left: 50%;
   top: 50%;
   height:60px;
   width:60px;
   margin:0px auto;
   -webkit-animation: rotation .6s infinite linear;
   -moz-animation: rotation .6s infinite linear;
   -o-animation: rotation .6s infinite linear;
   animation: rotation .6s infinite linear;
   border-left:6px solid rgba(0,174,239,.15);
   border-right:6px solid rgba(0,174,239,.15);
   border-bottom:6px solid rgba(0,174,239,.15);
   border-top:6px solid rgba(0,174,239,.8);
   border-radius:100%;
   z-index: 100;
}

@-webkit-keyframes rotation {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(359deg);}
}
@-moz-keyframes rotation {
   from {-moz-transform: rotate(0deg);}
   to {-moz-transform: rotate(359deg);}
}
@-o-keyframes rotation {
   from {-o-transform: rotate(0deg);}
   to {-o-transform: rotate(359deg);}
}
@keyframes rotation {
   from {transform: rotate(0deg);}
   to {transform: rotate(359deg);}
}
html,
body {
	min-height: 100%;
	min-width: 1280px !important;
}

body {
	font-family: "Barlow", sans-serif;
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	margin: 0;
	/* background-image: radial-gradient(
		circle farthest-corner at 50% -12.9%,
		var(--bg-3) 3.3%,
		var(--bg-4) 90.2%
	); */
	background: url('../images/frontend/bg-01.jpg');
}

.container {
	min-width: 1280px;
}
#header {
	/*background-color: var(--bg-header);*/
	background: radial-gradient(circle farthest-corner at -4% -12.9%, var(--bg) 3.3%, var(--bg-4) 90.2%);
}
#headerOne {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 150px;
	position: relative;
}
#headerOne .sideRight {
	display: flex;
	align-items: center;
}
nav.navbar {
	background-color: var(--bg);
	height: 60px;
}
nav .nav-link {
	color: var(--text-nav);
	font-size: 1.2em;
	padding-left: 1em!important;
	padding-right: 1em!important;
}
nav .nav-link:hover {
	color: var(--text-hover);
}
nav .nav-link.active {
	background: var(--bg-selected);
	color: var(--text-darker);
}
#headerTwo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 30px;
	background-color: var(--bg-runningtext);
	color: var(--text-active);
	padding-left: 10px;
}
#headerTwo > .runText,
#headerTwo > .icon {
	height: 100%;
	display: flex;
	align-items: center;
	margin-right: 10px;
}
#headerTwo > .runText {
	width: 100%;
}
.footer-desc {
	background-color: var(--bg-darker);
	padding-top: 3em;
	padding-bottom: 3em;
}
footer {
	position: relative;
	background: var(--bg-tp);
	display: flex;
	align-items: center;
	height: 80px;
}
#pageContent {
	min-height: calc(100vh - 240px - 80px);	
}
#fconus {
	position: fixed;
	right: 1em;
	bottom: 1em;
	z-index: 2;
}
#fconus > .dropdown-toggle {
	height: 60px;
	width: 60px;
	border-radius: 100%;
	border: none;
	box-shadow: 0px 0px 15px var(--box-shadow),
		inset 0px 0px 0px transparent;
	transition: all 0.5s ease-in-out;
}
#fconus > .dropdown-toggle::after {
	display: none;
}
#fconus > .dropdown-toggle:hover {
	box-shadow: 0px 0px 0px transparent,
		inset 0px 0px 4px 2px var(--box-shadow-inset);
}
#fconus > .dropdown-menu {
	padding: 0;
	width: 320px;
	background: transparent;
	border: none;
}
#fconus > .dropdown-menu > li > .dropdown-item {
	color: var(--text);
	width: 100%;
	padding: 10px 1em;
	margin: 7px 0;
	border-radius: 5px;
	border: 1px solid var(--border-div-dark);
	transition: all 0.5s ease-in-out;
}
#fconus .whatsapp {
	background: #46a51e;
}
#fconus .telegram {
	background: #34a5e7;
}
#fconus .facebook {
	background: #1178f2;
}
#fconus > .dropdown-menu > li > .dropdown-item:hover {
	background-color: var(--bg-3);
	transition: all 0.1s ease-in-out;
}
#fconus .icon {
	width: 30px;
}
#fconus h5 {
	margin-bottom: 0px;
}
.contentDiv {
	max-width: 600px;
}
.contentDiv-sm {
	max-width: 400px;
}
.contentDiv-lg {
	max-width: 800px;
}
.contentDiv-xl {
	max-width: 1000px;
}
.contentDiv-xxl {
	max-width: 1200px;
}
#goTop {
	display: none;
	position: fixed;
	left: 1em;
	bottom: 1em;
	z-index: 2;
}
#goTop .btn {
	height: 60px;
	width: 60px;
	border-radius: 100%;
	border: none;
	box-shadow: 0px 0px 15px var(--box-shadow),
		inset 0px 0px 0px transparent;
	transition: all 0.5s ease-in-out;
}
