/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  font-family: 'Roboto', sans-serif;
  color: #000;
  font-size: 0.95rem;
}
a {
  color: #0280fc;
  text-decoration: none;
  outline: unset;
}
a:hover {
  color: #006ad3;
  text-decoration: none;
  outline: unset;
}
/*--Theme Buttons--*/
.btn {
    border-radius: 0.275rem;
    padding: 8px 32px;
}
.btn-sm {
    border-radius: 0.275rem;
    padding: 6px 22px;
    font-size: 13px;
}
.btn-primary{
	color: #fff;
    background: #0280fc;
    border-color: #0280fc;
}
.btn-primary:hover{
	color: #fff;
    background-color: #006ad3;
    border-color: #006ad3;
}
.btn-outline-primary{
	color: #0280fc;
    background: transparent;
    border-color: #0280fc;
}
.btn-outline-primary:hover{
	color: #fff;
    background-color: #006ad3;
    border-color: #006ad3;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0280fc;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #0280fc;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 20%);
}
#header.fixed-top {
  height: 70px;
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #0280fc;
}
#header .logo img {
  height: 70px;
}
#header.fixed-top .logo img{
  height: 60px;
}
@media (max-width: 768px) {
	#header {
	 height: 75px;
	}
	#header .logo img {
	  height: 60px;
	}
	#header.fixed-top .logo img{
	  height: 42px;
	}
}
.scrolled-offset {
  margin-top: 70px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/** Desktop Navigation **/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #0280fc;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #0280fb;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0280fc;
}
.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}
.navbar-mobile>ul>li {
  padding: 0;
}
.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0280fc;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #0280fc;
}
.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 75vh;
  background: url("../img/hero-bg.jpg") top right;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.25);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
}
#hero h1 {
  margin: 0px 0 15px;
  font-size: 45px;
  font-weight: 600;
  line-height: 50px;
  color: #333;
}
#hero h2 {
  color: #0280fc;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#hero h2 i{
  font-size: 18px;
  transform: rotate(-90deg);
  margin-right: 5px;
}
#hero h3{
  font-size: 20px;
  margin-right: 5px;
  color: #666;
  font-weight: 500;
}
#hero .blue-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background-color: #0280fc;
  border: 1px solid #0280fc;
}
#hero .blue-btn:hover {
  background-color: #006ad3;
  border-color: #006ad3;
}
#hero .white-btn {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #0280fc;
  background-color: #fff;
  border: 1px solid #0280fc;
}
#hero .white-btn:hover {
  color: #fff;
  background-color: #006ad3;
  border-color: #006ad3;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 75px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #fff;
}
.section-title {
  padding-bottom: 25px;
  position: relative;
}
.section-title h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  color: #666;
}
.section-title h3 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0 35px 10px;
  color: #0280fc;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  width: auto;
}
.section-title h3:before {
	content:'';
	width: 20px;
	height: 2px;
	border-radius:50px;
	position:absolute;
	bottom: 4px;
	left: -25px;
	background: #0280fc;
}
.section-title h3:after {
	content:'';
	width: 20px;
	height: 2px;
	border-radius:50px;
	position:absolute;
	bottom: 4px;
	right: -25px;
	background: #0280fc;
}
.section-content {
  margin-bottom: 30px;
}
.section-content p {
    line-height: 1.65rem;
    font-size: 1.0rem;
    text-align: justify;
}
/*-- Service Section --*/
#services {
    background: url(../img/service-bg.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
#services:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 29 57 / 90%);
}
.service-box{
	width: 100%;
	float: left;
	margin: 0px;
	padding: 0px;
	position: relative;
}
.service-box li{
	list-style: none;
	float: left;
	width: 33.3%;
	text-align: center;
	padding: 30px 15px;
	border-right: 1px solid rgb(255 255 255 / 25%);
	border-bottom: 1px solid rgb(255 255 255 / 25%);
	min-height: 360px;
}
.service-box li:hover {
    background: rgb(36 145 255 / 25%);
}
.service-box li img{
	width:64px;
	height:64px;
}
.service-box li h4{
	font-size: 20px;
	color: #fff;
	margin: 20px 0px;
	position: relative;
	padding-bottom: 10px;
}
.service-box li:hover h4{
	color: #0280fb;
}
.service-box li h4:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background-color: #007fff;
}
.service-box li p{
	font-size: 14px;
	color: #fff;
	margin: 0 0 20px;
	padding: 0px;
	line-height: 24px;
	font-weight: 400;
	min-height: 150px;
}
.service-box li:nth-child(3), .service-box li:nth-child(6) {
    border-right: 0px;
}
.service-box li:nth-child(4), .service-box  li:nth-child(5), .service-box  li:nth-child(6) {
    border-bottom: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	.service-box li {
		width: 50%;
		padding: 15px;
		min-height: 422px;
	}
	.service-box li:nth-child(2), .service-box li:nth-child(4) {
		border-right: 0px;
	}
	.service-box li:nth-child(3) {
		border-right: 1px solid rgb(255 255 255 / 25%);
	}
	.service-box li:nth-child(4) {
		border-bottom: 1px solid rgb(255 255 255 / 25%);
	}
}
@media (min-width: 260px) and (max-width: 767px) { 
	.service-box li {
		width: 100%!important;
		padding: 20px;
	}
	.service-box li:nth-child(1), .service-box li:nth-child(2), .service-box li:nth-child(3), .service-box li:nth-child(4), .service-box li:nth-child(5), .service-box li:nth-child(6) {
		border-right: 0px;
	}
	.service-box li:nth-child(4), .service-box li:nth-child(5) {
		border-bottom: 1px solid rgb(255 255 255 / 25%);
	}
}
/*--//--*/
#advantage .inner-box {
    position: relative;
    display: block;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
}
#advantage .inner-box .image-box {
    position: absolute;
    left: 0px;
    top: 0px;
    background: #007fff;
    overflow: hidden;
    margin: 0;
}
#advantage .inner-box .image-box img {
    width: 100%;
    opacity: 1;
    transition: all 500ms ease;
}
#advantage  .inner-box:hover .image-box img {
    opacity: 0.5;
    transform: scale(1.05);
}
#advantage .inner-box .content-box {
    position: relative;
    padding: 28px 30px 30px 240px;
    min-height: 300px;
    margin-bottom: 0px;
}
#advantage .inner-box .content-box:before {
    position: absolute;
    content: '';
    background: url(../img/dot-pattern.png);
    width: 255px;
    height: 255px;
    top: 25px;
    right: 35px;
    background-repeat: no-repeat;
}
#advantage .inner-box .content-box .icon-box {
    position: relative;
    display: inline-block;
    width: 64px;
    height: 64px;
    color: #000;
    margin-bottom: 15px;
}
#advantage .inner-box .content-box .icon-box img{
    position: relative;
}
#advantage .inner-box .content-box .icon-box:before {
    position: absolute;
    content: '';
    background: #dadada;
    width: 42px;
    height: 42px;
    left: -10px;
    bottom: -5px;
    border-radius: 50%;
    z-index: 0;
}
#advantage .inner-box .content-box h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #007fff;
    margin-bottom: 11px;
}
#advantage .inner-box .content-box .text {
    position: relative;
    display: block;
    color: #000000;
    margin-bottom: 0;
    text-align: justify;
    line-height: 22px;
    min-height: 145px;
    font-size: 14px;
}
@media (max-width: 767px){
	#advantage .inner-box .image-box{
		display:none;
	}
	#advantage .inner-box .content-box {
		position: relative;
		padding: 28px 30px 30px 40px;
		min-height: 300px;
		margin-bottom: 0px;
	}
}
/*--//--*/
#portfolio{
	background: #001d3b;
}
#portfolio .portfolio-box{	
	position: relative;
}
#portfolio .portfolio-box .image {
    position: relative;
}
#portfolio .portfolio-box .image img {
    position: relative;
    width: 100%;
    display: block;
}
#portfolio .portfolio-box .image .content-overlay{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0;
	display:block;
	background-color: rgb(0 127 255 / 85%);
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	-webkit-transform:scaleY(0);
	-ms-transform:scaleY(0);
	-o-transform:scaleY(0);
	-moz-transform:scaleY(0);
	transform:scaleY(0);
	-webkit-transform-origin:top;
	-ms-transform-origin:top;
	-o-transform-origin:top;
	-moz-transform-origin:top;
	transform-origin:top;
}
#portfolio .portfolio-box:hover .image .content-overlay{
	opacity:1;
	-webkit-transform:scaleY(1);
	-ms-transform:scaleY(1);
	-o-transform:scaleY(1);
	-moz-transform:scaleY(1);
	transform:scaleY(1);
}
#portfolio .portfolio-box .image .content-overlay .overlay-inner{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    text-align:center;
    padding: 15px 30px;
    vertical-align: middle;
}
#portfolio .portfolio-box .image .content-overlay .overlay-inner .content-box {
    position: relative;
    display: table-cell;
    vertical-align: middle;
	color:#fff;
}
/*--//--*/
#contact .contact-box{
	padding: 45px;
	border: 2px solid #0280fc;
	margin-bottom: 30px;
}
#contact .contact-box h4{
	color: #666;
	font-size: 1.5rem;
	text-transform: uppercase;
	margin: 0 0 30px;
	padding-bottom: 0.5rem;
	position: relative;
	font-weight: 600;
}
#contact .contact-box h4:after{
	content: "";
	background-color: #007fff;
	width: 30px;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	border-radius: 3px;
}
#contact .contact-box p {
    color: #888;
    line-height: 1.35rem;
    margin-bottom: 1.75rem;
}
#contact .contact-box ul {
    list-style-type: none;
    color: #333;
    padding: 0;
    margin: 0;
}
#contact .contact-box ul li {
    position: relative;
    padding-left: 26px;
    padding-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
#contact .contact-box ul li i {
    color: #007fff;
    position: absolute;
    left: 0;
    top: 3px;
}
.contactForm .form-control{
	border: 1px solid #b1d8ff;
	outline: none;
	font-size: 14px;
	color: #333;
	box-sizing: border-box;
	display: block;
	background-color: #f6fbff;
	font-weight: 500;
	opacity: 1;
	border-radius: 0;
	min-height: 48px;
	width: 100%;
	padding: 0.375rem 0.75rem;
	line-height: 1.5;
}
#footer {
    padding: 45px 0 30px;
    background: #333;
}
#footer .logo{
	display: block;
	text-align: center;
	margin-bottom: 20px;
}
#footer .logo img{
    width: 250px;
    opacity: 1;
}
#footer .social-icon-one {
    position: relative;
    text-align: center;
    margin-bottom: 1.5rem;
}
#footer .social-icon-one li {
    position: relative;
    margin-right: 10px;
    display: inline-block;
}
#footer .social-icon-one li a {
    position: relative;
    width: 36px;
    height: 36px;
    font-size: 14px;
    text-align: center;
    border-radius: 50%;
    line-height: 35px;
    color: #cccccc;
    display: inline-block;
    border: 1px solid #cccccc;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}
#footer .social-icon-one li a:hover {
	color: #0280fc;
	border-color: #0280fc;
}
#footer .copyright {
    text-align: center;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 300;
    padding-top: 30px;
    border-top: 1px solid rgb(0 0 0 / 50%);
}
/*--//--*/