.hype {
	color: #f6c450;
}

.hype-icon {
	margin-bottom: 24px;
}

.hype-icon i {

	font-size: 42px;
	--fa-secondary-color: #999999; 
	--fa-secondary-opacity: 1.0; 
	--fa-primary-color: #FFFFFF;

}

.splash-img-right {
	position: absolute;
	right: 5%;
	top: 15%;
}

.post-title {
    margin-top: 12px;
}

.assistant-color {
    color: var(--assistant-color);
}

.has-icon-left .title-btn {
	font-size: 15px;
	font-weight: 500;
	margin-left: 10px;
}

.icon-assistant-color {
    color: var(--assistant-color);
}

.start-proj-hover:hover {
	color: var(--assistant-color);
}

.above-the-fold-content .description {
	font-size: 19px;
	font-weight: 500;
    color: #ffffff;
    margin-bottom: 50px;
}

.above-the-fold-content .dsn-icon {
	color: var(--assistant-color);
}

.above-the-fold-content .service-top {
    font-size: 15px;
    margin-right: 10px;
    font-weight: 400;
}

.above-the-fold-content .service-top i {
    margin-right: 8px;
}

.service-icon {
	
    display: inline-block;
    width: 50px;
    height: 50px;
    text-align: center;
    vertical-align: bottom;
    margin-right: 40px;
    min-width: 50px;
}

/* LOADING ANIMATION */

.loader-animation {

  margin-top: 50px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  perspective: 800px;

}

.loader-animation .inner {
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-radius: 50%;  
}

.loader-animation .inner.one {
  left: 0%;
  top: 0%;
  animation: rotate-one 1s linear infinite;
  border-bottom: 3px solid #f6c450;
}

.loader-animation .inner.two {
  right: 0%;
  top: 0%;
  animation: rotate-two 1s linear infinite;
  border-right: 3px solid #EFEFFA;
}

.loader-animation .inner.three {
  right: 0%;
  bottom: 0%;
  animation: rotate-three 1s linear infinite;
  border-top: 3px solid #EFEFFA;
}

.blog-list-dt {
    margin-top: 8px;
}

.blog-list-dt span {
    font-size: 13px;
}

.blog-head {
    color: #f6c450; 
    display: inline;
}

.blog-subhead {
    margin-left: 8px;
    display: inline;
}

@keyframes rotate-one {
  0% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
  }
}

@keyframes rotate-two {
  0% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
  }
}

@keyframes rotate-three {
  0% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
  }
  100% {
    transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
  }
}

/* END LOADING ANIMATION */

/* FORM SEND LOADER */

.form-loader {

  margin-top: 20px !important;
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  perspective: 800px;

}

/* END FORM SEND LOADER */

.about-splash-header {

    border: 1px solid #ffffff1a;
    background: #191919 !important;

}

.icon-brand-feature {

    color: #e0e0e0; 
    font-size: 42px;
    
}

/* SHOOTING STARS */

.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    background: url("../img/design/starrybg.webp");
    background-size: cover;
    background-color: black;
    overflow: hidden;
}

@keyframes animateBg{
    0%,100%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
}

.starshot {
    position: absolute;
    top:50%;
    left:50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1),0 0 0 8px rgba(255,255,255,0.1),0 0 20px rgba(255,255,255,0.1);
    animation: animate 3s linear infinite;
}

.starshot::before{
    content:'';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg,#fff,transparent);
}

.starshothype {
    position: absolute;
    top:50%;
    left:50%;
    width: 4px;
    height: 4px;
    background: #f6c450;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(246,196,80,0.1),0 0 0 8px rgba(246,196,80,0.1),0 0 20px rgba(246,196,80,0.1);
    animation: animate 3s linear infinite;
}

.starshothype::before{
    content:'';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg,#f6c450,transparent);
}

@keyframes animate
{
    0%
    {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }
    70%
    {
        opacity: 1;
    }
    100%
    {
        transform: rotate(315deg) translateX(-1000px);
        opacity: 0;
    }
}
.starshothype {
    top: 0;
    right: 460px;
    left: initial;
    animation-delay: 3s;
    animation-duration: 3.8s;
}
.starshot:nth-child(1){
    top: 0;
    right: 0;
    left: initial;
    animation-delay: 0s;
    animation-duration: 2s;
}
.starshot:nth-child(2){
    top: 0;
    right: 80px;
    left: initial;
    animation-delay: 0.2s;
    animation-duration: 4s;
}
.starshot:nth-child(3){
    top: 80;
    right: 0px;
    left: initial;
    animation-delay: 0.4s;
    animation-duration: 5s;
}
.starshot:nth-child(4){
    top: 0;
    right: 180px;
    left: initial;
    animation-delay: 0.6s;
    animation-duration: 3.5s;
}
.starshot:nth-child(5){
    top: 0;
    right: 400px;
    left: initial;
    animation-delay: 0.8s;
    animation-duration: 4.5s;
}
.starshot:nth-child(6){
    top: 0;
    right: 600px;
    left: initial;
    animation-delay: 1s;
    animation-duration: 5s;
}
.starshot:nth-child(7){
    top: 300px;
    right: 0px;
    left: initial;
    animation-delay: 1.2s;
    animation-duration: 1.75s;
}
.starshot:nth-child(8){
    top: 0px;
    right: 700px;
    left: initial;
    animation-delay: 1.4s;
    animation-duration: 1.25s;
}
.starshot:nth-child(9){
    top: 0px;
    right: 1000px;
    left: initial;
    animation-delay: 0.75s;
    animation-duration: 2.25s;
}
.starshot:nth-child(9){
    top: 0px;
    right: 450px;
    left: initial;
    animation-delay: 2.75s;
    animation-duration: 2.75s;
}

/* END SHOOTING STARS */

.dsn-back {
    margin-bottom: 30px !important;
}

.messages {

    background: #f6c450;
    padding: 10px 15px;
    margin-bottom: 30px;
    display: none;
    border-radius: 4px;

}

.blog-title {
    font-size: 48px;
    line-height: 54px;
}

.post-content p {
    font-size: 17px;
}

.post-author-info {
    margin-top: 24px;
    display: block;
    min-height: 30px;
    margin-bottom: 10px;
}

.post-author-info img {
    width: 24px;
    height: 24px;
    float: left;
    margin-right: 8px;
    border-radius: 50%;
}

.blog-list-author {
    margin-top: 8px;
    display: block;
    min-height: 30px;
}

.blog-list-author p {
    font-size: 13px;
}

.blog-list-author strong {
    color: #f6c450;
}

.left-box img {
    max-height: 160px;
    width: auto;
    margin-bottom: 20px;
}

.sm-title-block {
    font-size: 18px !important;
}

.news-content-inner {
    margin-top: 60px;
}

@media only screen and (min-width: 1668px) {

    .mission-vision {
        padding-right: 100px;
        font-weight: 300;
        font-size: 20px;
    }

  	.splash-img-right img {

	  	right: 5%;
	    height: 75vh;
	    width: auto;
	    max-height: 75vh;
		display: flex;
		justify-content: center;

	 }

	 .main-slider .dsn-slider-content {
	 	padding-bottom: 140px;
	 }

  	#dsn_preloader {
    	--width-loading-circle: 25vw ;
  	}

}

@media only screen and (min-width: 992px) {

    .mission-vision {
        padding-right: 100px;
        font-weight: 300;
        font-size: 20px;
    }

  	.splash-img-right img {

	  	right: 5%;
	    height: 68vh;
	    width: auto;
	    max-height: 68vh;
		display: flex;
		justify-content: center;

	 }

  	#dsn_preloader {
    	--width-loading-circle: 25vw ;
  	}

}

@media only screen and (max-width: 991px) {

    .starshot:nth-child(6){
        display: none;
    }
    .starshot:nth-child(7){
        display: none;
    }
    .starshot:nth-child(8){
        display: none;
    }
    .starshot:nth-child(9){
        display: none;
    }
    .starshot:nth-child(9){
        display: none;
    }

    .starshothype {
        top: 40px;
        right: -12px;
        left: initial;
        animation-delay: 3s;
        animation-duration: 3.8s;
    }

    .title-sm-mobile {
        font-size: 34px;
        line-height: 38px;
    }

    .splash-img-right {
        top: 12%;
    }

    .splash-img-right img {
        height: 140px;
        max-height: 140px;
    }

    #dsn_preloader {
        --width-loading-circle: 50vw ;
    }

    .above-the-fold-content {
    	 padding: 125px 0px 0px 10px;
    }

    .loading-header {
        font-size: 18px;
    }

}

@media only screen and (max-width: 721px) {

    .no-mobile {
        display: none;
    }

    .above-the-fold-content .description {
        font-size: 16px;
    }

    .starshot:nth-child(4){
        display: none;
    }
    .starshot:nth-child(5){
        display: none;
    }
    .starshot:nth-child(6){
        display: none;
    }
    .starshot:nth-child(7){
        display: none;
    }
    .starshot:nth-child(8){
        display: none;
    }
    .starshot:nth-child(9){
        display: none;
    }
    .starshot:nth-child(9){
        display: none;
    }

    .starshothype {
        top: 160px;
        right: -12px;
        left: initial;
        animation-delay: 3s;
        animation-duration: 3.8s;
    }

    .title-sm-mobile {
        font-size: 34px;
        line-height: 38px;
    }

    .mission-vision {
        padding-right: 0px;
        font-weight: 300;
        font-size: 15px;
    }

    .splash-img-right {
        top: 12%;
    }

    .splash-img-right img {
        height: 140px;
        max-height: 140px;
    }

    #dsn_preloader {
        --width-loading-circle: 50vw ;
    }

    .above-the-fold-content {
    	padding: 125px 0px 0px 10px;
    }

    .loading-header {
    	font-size: 15px;
    }
  
}