*{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-family: Jost;
	color: #120f2d;
	scroll-behavior: smooth;
}
a{
	text-decoration: none !important;
}
:root{
	--theme-blue: #4d41e1;
}
.btn{
	background: var(--theme-blue) !important;
	color: #fff !important;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 17px;
	border-radius: 5px;
	border: none !important;
}
.btn:hover{
	-webkit-box-shadow: 0px 15px 20px 0px rgb(77 65 225 / 15%);
	        box-shadow: 0px 15px 20px 0px rgb(77 65 225 / 15%);
	background: #fff !important;
	color: var(--theme-blue) !important;
}

/*navbar*/
.fixed-navbar{
	position: fixed;
	width: 100%;
	-webkit-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	        transform: translateY(-100%);
	top: -100%;
	background: #fff !important;
	-webkit-box-shadow: 0 0 8px 0px rgba(0,0,0,0.1);
	        box-shadow: 0 0 8px 0px rgba(0,0,0,0.1);
	z-index: 999;
	-webkit-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
.fixed-navbar.fixed{
	top: 0;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}
#navbar{
	padding: 20px 0;
}
#navbar .menu ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
#navbar .menu ul li{
	margin-right: 30px;
}
#navbar .menu ul li:last-child{
	margin-right: 0;
}
#navbar .menu ul li.underline{
    position: absolute;
    height: 3px;
    background: var(--theme-blue);
    bottom: 0;
}
#navbar .menu ul li a{
	color: #120f2d;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-weight: 500;
	font-size: 16px;
	position: relative;
}
#navbar .menu ul li a:before{
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	bottom: -5px;
	left: 0;
	background: var(--theme-blue);
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
	visibility: 0;
}
#navbar .menu ul li a.active:before{
	visibility: visible;
	opacity: 1;
}
#navbar .menu ul li a:hover,
#navbar .menu ul li a.active{
	color: var(--theme-blue);
}
#navbar .ham-menu {
    height: 30px;
    width: 30px;
    z-index: 2;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    cursor: pointer;
    display: none;
}
#navbar .ham-menu .line {
    background-color: #000;
    width: 30px;
    height: 3px;
    border-radius: 8px;
}
#navbar .ham-menu .line1 {
    -webkit-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
#navbar .ham-menu .line3 {
    -webkit-transform-origin: 0% 100%;
        -ms-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
#navbar .ham-menu .line2{
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;	
}
#navbar .ham-menu.active .line1 {
    display: block;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
#navbar .ham-menu.active .line2 {
    opacity: 0;
}
#navbar .ham-menu.active .line3 {
    display: block;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
@media (max-width: 767px) {
	#navbar{
		position: relative;
	}
	#navbar .ham-menu{
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	#navbar .menu{
		position: absolute;
		height: auto;
		width: calc(100% - 20px);
		background: #fff;
		z-index: 99;
		left: 50%;
		-webkit-transform: translateX(-50%);
		    -ms-transform: translateX(-50%);
		        transform: translateX(-50%);
		top: 80px;
		padding: 0 20px;
		border-radius: 8px;
		-webkit-box-shadow: 0 0 8px 0px rgba(0,0,0,0.1);
		        box-shadow: 0 0 8px 0px rgba(0,0,0,0.1);
	}
	#navbar .menu ul{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: start;
		    -ms-flex-align: start;
		        align-items: flex-start;
		padding-bottom: 10px;
	}
	#navbar .menu ul li{
		margin-top: 12px;
	}
	#navbar .menu ul li a{
		font-size: 14px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#navbar .menu ul li a{
		font-size: 13px;
	}
}

/*header*/
#header{
	height: 90vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
#header #particles-js{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
#header .content h4{
	font-size: 20px;
	position: relative;
}
#header .content h4:before{
	content: '';
	position: absolute;
	height: 40px;
	width: 40px;
	background: var(--theme-blue);
	border-radius: 100%;
	opacity: 0.5;
	z-index: -1;
	top: -15px;
	left: -15px;
}
#header .content .name{
	margin-top: 15px;
	font-size: 34px;
	font-weight: 500;
}
#header .content .name span{
	color: var(--theme-blue);
}
#header .content h2{
	margin-top: 10px;
	font-size: 70px;
	font-weight: 600;
}
#header .content h2 b{
	font-weight: 600 !important;
	color: var(--theme-blue);
}
#header .content .social-media {
	margin-top: 25px;
}
#header .content .social-media a{
	height: 40px;
	width: 40px;
	border: 1px solid var(--theme-blue);
	border-radius: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-right: 10px;
	font-size: 18px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#header .content .social-media a:hover{
	background: var(--theme-blue);
}
#header .content .social-media a:hover i{
	color: #fff;
}
#header .content .social-media a i{
	color: var(--theme-blue);
}
@media (max-width: 767px) {
	#header{
		height: 60vh;
		margin-top: 80px;
	}
	#header .content .name{
		margin-top: 10px;
		font-size: 25px;
	}
	#header .content h2{
		font-size: 36px;
	}
	#header .content .social-media{
		margin-top: 30px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#header .content .name{
		font-size: 30px;
	}
	#header .content h2{
		font-size: 60px;
	}
	#header .content .social-media{
		margin-top: 15px;
	}
}


/*about*/
#about{
	padding: 200px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	position: relative;
}
#about:before{
    position: absolute;
    content: '';
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -ms-linear-gradient(90deg, #1800ff 0%, #8b7fff 35%, #fefefe 60%);
    opacity: 0.051;
}
#about .top{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#about .top h3{
	text-align: center;
	font-size: 45px;
	font-weight: 400;
	line-height: 1.4;
}
#about .top h3 span{
	font-weight: 600;
}
#about .top .line{
	width: 35%;
	height: 5px;
	background: #000;
	margin-top: 50px;
	margin-bottom: 40px;
}
#about .top h5{
	font-size: 35px;
	font-weight: 400;
}
#about .top h5 span{
	font-weight: 600;
}
#about .bottom{
	margin-top: 60px;
}
#about .bottom .item{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
}
#about .bottom .item i{
	font-size: 32px;
	color: var(--theme-blue);
}
#about .bottom .item h4{
	margin-top: 10px;
	font-size: 28px;
	font-weight: 500;
}
#about .bottom .item h4 span{
	font-weight: 600;
}
#about .bottom .item p{
	margin-top: 12px;
	font-size: 16px;
}
@media (max-width: 767px) {
	#about{
		padding: 100px 0;
	}
	#about .top h3{
		font-size: 28px;
		line-height: 33px;
	}
	#about .top .line{
		margin-top: 25px;
		margin-bottom: 20px;
	}
	#about .top h5{
		font-size: 26px;
	}
	#about .bottom .item{
		margin-top: 30px;
	}
	#about .bottom{
		margin-top: 30px;
	}
	#about .bottom .item h4{
		font-size: 22px;
	}
	#about .bottom .item p{
		font-size: 16px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#about{
		padding: 150px 0;
	}
	#about .top h3{
		font-size: 36px;
		line-height: 1.4;
	}
	#about .top .line{
		margin-top: 30px;
		margin-bottom: 30px;
	}
	#about .top h5{
		font-size: 28px;
	}
	#about .bottom{
		margin-top: 30px;
	}
	#about .bottom .item{
		margin-top: 20px;
	}
	#about .bottom .item h4{
		font-size: 24px;
	}
	#about .bottom .item p{
		font-size: 14px;
	}
}
@media (min-width: 992px) and (max-width: 1300px) {
	#about{
		padding: 100px 0;
	}
	#about .top h3{
		font-size: 38px;
	}
	#about .top .line{
		margin-top: 20px;
		margin-bottom: 15px;
	}
	#about .top h5{
		font-size: 28px;
	}
	#about .bottom .item h4{
		font-size: 24px;
	}
	#about .bottom .item p{
		font-size: 13px;
	}
}


/*portfolio*/
#portfolio{
	margin-top: 100px;
}
.heading h6{
	font-size: 16px;
	color: var(--theme-blue);
	font-weight: 400;
}
.heading h4{
	font-size: 36px;
	margin-top: 15px;
	font-weight: 600;
	line-height: 1.3;
}
#portfolio .body{
	margin-top: 30px;
}
#portfolio .body .item{
	margin-top: 30px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
#portfolio .body .item:before{
	content: '';
	width: 100%;
	height: 100%;
	background: #ffffff99;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	-webkit-transition: .4s ease-in-out;
	-o-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
#portfolio .body .item:hover:before{
	opacity: 1;
}
#portfolio .body .item .brd{
	position: absolute;
	background: var(--theme-blue);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
#portfolio .body .item:hover .brd{
	opacity: 1;
	visibility: visible;
}
#portfolio .body .item .brd-top{
	top: 20px;
}
#portfolio .body .item .brd-bottom{
	bottom: 20px;
}
#portfolio .body .item .brd-top,
#portfolio .body .item .brd-bottom{
	height: 2px;
	width: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
#portfolio .body .item:hover .brd-top,
#portfolio .body .item:hover .brd-bottom{
	width: calc(100% - 40px);
}
#portfolio .body .item:hover .brd-left,
#portfolio .body .item:hover .brd-right{
	height: calc(100% - 40px);
}
#portfolio .body .item .brd-left{
	left: 20px;
}
#portfolio .body .item .brd-right{
	right: 20px;
}
#portfolio .body .item .brd-left,
#portfolio .body .item .brd-right{
	width: 2px;
	height: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
#portfolio .body .item a.eye{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) scale(0.7);
	    -ms-transform: translate(-50%, -50%) scale(0.7);
	        transform: translate(-50%, -50%) scale(0.7);
	font-size: 35px;
	height: 60px;
	width: 60px;
	border: 1px solid var(--theme-blue);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border-radius: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
#portfolio .body .item a.eye i{
	color: var(--theme-blue);
}
#portfolio .body .item:hover a.eye{
	visibility: visible;
	opacity: 1;
	-webkit-transform: translate(-50%, -50%) scale(1);
	    -ms-transform: translate(-50%, -50%) scale(1);
	        transform: translate(-50%, -50%) scale(1);
}
#portfolio .body .button{
	margin-top: 40px;
}
#portfolio .body .button .btn{
	padding: 12px 50px;
}
@media (max-width: 767px) {
	#portfolio{
		margin-top: 50px;
	}
	.heading h6{
		font-size: 14px;
	}
	.heading h4{
		font-size: 28px;
	}
	.heading h4 br{
		display: none;
	}
	#portfolio .body{
		margin-top: 0;
	}
	#portfolio .body .button{
		margin-top: 30px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#portfolio{
		margin-top: 70px;
	}
	.heading h6{
		font-size: 15px;
	}
	.heading h4{
		font-size: 32px;
	}
	#portfolio .body{
		margin-top: 10px;
	}
	#portfolio .body .item a.eye{
		font-size: 26px;
	}
}


/*services*/
#services{
	margin-top: 100px;
	padding-bottom: 100px;
	position: relative;
}
#services:before{
	position: absolute;
    content: '';
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: -ms-linear-gradient(90deg, #1800ff 0%, #8b7fff 35%, #fefefe 60%);
    opacity: 0.051;
}
#services .body{
	margin-top: 50px;
}
#services .body .item{
	background: #fff;
	padding: 80px 60px;
	-webkit-box-shadow: 0px 5px 10px 0px rgb(152 152 153 / 25%);
	        box-shadow: 0px 5px 10px 0px rgb(152 152 153 / 25%);
}
#services .body .item h4{
	margin-top: 30px;
	font-size: 20px;
	font-weight: 500;
}
#services .body .item p{
	margin-top: 20px;
	color: #818090;
	font-size: 18px;
}
#services .body .item h6 {
	font-weight: 400;
	margin-top: 30px;
}	
#services .body .item h6 a{
	color: #818090;
	font-size: 16px;
	border-bottom: 1px solid #818090;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#services .body .item img{
	width: 100px;
}
#services .body .item h6 a:hover{
	border-color: transparent;
}
@media (max-width: 767px) {
	#services{
		margin-top: 50px;
		padding-bottom: 50px;
	}
	#services .body{
		margin-top: 15px;
	}
	#services .body .item{
		margin-top: 20px;
		padding: 40px 30px;
	}
	#services .body .item h4{
		margin-top: 20px;
		font-size: 16px;
	}
	#services .body .item p{
		margin-top: 15px;
		font-size: 14px;
	}
	#services .body .item h6 a{
		font-size: 14px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#services .body .item{
		margin-top: 30px;
		padding: 50px 40px;
	}
	#services .body{
		margin-top: 10px;
	}
	#services .body .item h4{
		margin-top: 25px;
		font-size: 18px;
	}
	#services .body .item p{
		margin-top: 15px;
		font-size: 16px;
	}
	#services .body .item h6 a{
		font-size: 14px;
	}
}
@media (min-width: 992px) and (max-width: 1300px) {
	#services .body .item{
		padding: 40px 30px;
	}
	#services .body .item p{
		font-size: 16px;
	}
}


/*contact*/
#contact{
	padding: 100px 0;
}
#contact .info h4{
	font-size: 36px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 40px;
}
#contact .info h5{
	font-size: 18px;
	line-height: 1;
	margin-bottom: 5px;
	margin-top: 25px;
}
#contact .info p{
	color: #818090;
	font-size: 18px;
}
#contact form input{
	height: 67px;
}
#contact form textarea{
	height: 150px;
	resize: none;
}
#contact form .form-control{
	font-size: 16px;
	padding: 12px 20px;
	border: 1px solid #eaeaea;
	-webkit-box-shadow: none;
	        box-shadow: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#contact form .form-control:focus{
	border-color: var(--theme-blue);
}
#contact form .form-group{
	margin-top: 15px;
}
#contact form .btn{
	margin-top: 20px;
	padding: 15px 30px;
}

@media (max-width: 767px) {
	#contact{
		padding: 80px 0;
	}
	#contact .info h4{
		font-size: 28px;
	}
	#contact .info h5,
	#contact .info p{
		font-size: 16px;
	}
	#contact .info p
	#contact .info h4 br{
		display: none;
	}
	#contact form {
		margin-top: 20px;
	}
	#contact form input{
		height: 60px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#contact .info h4{
		font-size: 32px;
		margin-bottom: 30px;
	}
	#contact .info h4 br{
		display: none;
	}
	#contact .info h5,
	#contact .info p{
		font-size: 17px;
	}
	#contact form .form-control{
		height: 65px;
	}
	#contact{
		padding: 100px 0;
	}
}

.copyright{
	font-size: 16px;
	padding-bottom: 30px;
	margin-top: 40px;
}
.copyright a{
	color: var(--theme-blue);
	border-bottom: 1px solid var(--theme-blue);
}


.carousel__button svg{
	stroke: #fff !important;
}
.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close{
	color: #fff !important;
}

#services .owl-stage-outer{
	padding: 25px;
}

