body, html {
	font-family: 'Open Sans', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	background-color:black;
	color: rgb(206, 206, 206);
	font-weight: 400;
	width: 100% !important;
	height: 100% !important;
}
body.no-scroll {
  overflow-y: hidden;
}
h2, h3, h4 {
	font-family: 'Inter', sans-serif;
	color:rgb(228, 228, 228) !important;
}
p {
	font-family: 'Inter', sans-serif;
	color:rgb(167, 167, 167) !important;
}
#portfolio h3, #portfolio h4 {
	color: black !important;
}
h2 {
	text-transform: uppercase;
	margin: 0 0 20px 0;
	font-weight: 800;
	font-size: 36px;
	color: #333;
}
h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
}
h4 {
	font-size: 18px;
	color: #333;
	font-weight: 600;
}
h5 {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}
p {
	font-size: 15px;
}
p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}
a {
	color: #608dfd;
	font-weight: 400;
}
a:hover, a:focus {
	text-decoration: none;
	color: #fd6060;
}
ul, ol {
	list-style: none;
}
ul, ol {
	padding: 0;
	webkit-padding: 0;
	moz-padding: 0;
}
hr {
	height: 1px;
	width: 70%;
	text-align: center;
	position: relative;
	background: #9ca2ff;
	margin-bottom: 20px;
	border: 0;
}
/* Navigation */
#menu {
	padding: 15px;
	transition: all 0.8s;
}
/* @media (min-width: 768px) { */
	.navbar-header {
    	display: flex;
		justify-content: space-between;
		align-items: center;
  	}
  	.navbar-header::before, .navbar-header::after {
    	display: none;
  }
/* } */
#menu.navbar-default {
	background-color: #fff;
	border-color: rgba(231, 231, 231, 0);
	box-shadow: 0 0 10px rgba(0,0,0,0.15);
}
#menu a.navbar-brand {
	font-family: 'Raleway', sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
}
#menu.navbar-default .navbar-nav > li > a,
#menu.navbar-default .navbar-nav > li > .nav-lanselect
{
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	color: #555;
	font-size: 15px;
	font-weight: 400;
	padding: 8px 2px;
	border-radius: 0;
	margin: 9px 20px 0 20px;
}
#menu.navbar-default .navbar-nav > li > .nav-lanselect {
	width: 140px;
	margin: 0 auto;
}
#menu.navbar-default .navbar-hamburger .navbar-nav > li > .nav-lanselect {
	margin-top: 50px;
}
#menu.navbar-default .navbar-nav > li > a:after {
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	content: "";
	transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after,
#menu.navbar-default .navbar-nav > li > a.active-page:after {
	width: 100%;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after, .navbar-default .navbar-nav > .active > a:hover:after, .navbar-default .navbar-nav > .active > a:focus:after {
	display: block !important;
	position: absolute !important;
	left: 0 !important;
	bottom: -1px !important;
	width: 100% !important;
	height: 2px !important;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%) !important;
	content: "" !important;
	transition: width 0.2s !important;
}
.navbar-toggle {
	border-radius: 0;
	border: none;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #fff;
}
.navbar-hamburger {
	position: fixed;
	top: 113px;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px 42.5px;
	background-color: #fff;
}
/* Hamburger menu animation  */
.hamburger-enter {
  opacity: 0;
  transform: scale(0.9);
}
.hamburger-enter-active {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 400ms, transform 400ms;
}
.hamburger-exit {
  opacity: 1;
}
.hamburger-exit-active {
  opacity: 0;
  transform: scale(0.9);
   transition: opacity 800ms, transform 800ms;
}
/* End of hamburger menu animation */
.section-title {
	margin-bottom: 70px;
}
.section-title h2 {
	position: relative;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
.section-title h2::after {
	position: absolute;
	content: "";
	background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
	height: 4px;
	width: 60px;
	bottom: 0;
	margin-left: -30px;
	left: 50%;
}
.section-title p {
	font-size: 18px;
}
.btn-custom {
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	background: linear-gradient(to right, #0067c7 0%, rgb(2, 206, 162) 100%);
	background-image: linear-gradient(to right, #0166c5 0%, rgb(10, 201, 159) 100%);
	padding: 14px 34px;
	letter-spacing: 1px;
	margin: 0;
	font-size: 15px;
	font-weight: 600;
	border-radius: 25px;
	transition: all 0.5s linear;
	border: 0;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom.focus, .btn-custom:active, .btn-custom.active {
	color: rgb(255, 255, 255);
	background-image: none;
	background: linear-gradient(to right, #127bdd 0%, rgb(37, 233, 190) 100%);

}
.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
a:focus, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
	outline: none;
	outline-offset: none;
}
/* Header Section */
.intro {
	display: table;
	position: relative;
	width: 100%;
	padding: 0;
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
.intro .overlay {
	background: rgba(0,0,0,0.2);
}
.intro h1 {
	font-family: 'inter', sans-serif;
	color: rgb(255, 255, 255);
	font-size: 80px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 10px;
}
.intro h1 span {
	font-weight: 800;
	color: #5ca9fb;
}
.intro p {
	color: #fff;
	font-size: 25px;
	font-weight: 200;
	line-height: 30px;
	margin: 0 auto;
	margin-bottom: 60px;
}
header .intro-text {
	margin-top: 200px;
	margin-bottom: 200px;
	padding: 50px;
	text-align: center;
	background-color: #000000;

}
.intro-text p {
	color:white !important;
}
/* Features Section */
#features {
	padding: 150px 0;
	background: black;
}
#features i.fa {
	font-size: 38px;
	margin-bottom: 20px;
	transition: all 0.5s;
	color: #fff;
	width: 100px;
	height: 100px;
	padding: 30px 0;
	border-radius: 50%;
	background: linear-gradient(to right, #0673d8 0%, rgb(21, 231, 186) 100%);
	box-shadow: 3px 3px 10px rgb(31, 31, 31);
}
/* About Section */
#about {
	padding: 115px 0;
}
#about h3 {
	font-size: 22px;
	margin: 0 0 20px 0;
}
#about h2 {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
#about h2::after {
	position: absolute;
	content: "";
	background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
	height: 4px;
	width: 60px;
	bottom: 0;
	left: 0;
}
#about .about-text li,
#services li {
	margin-bottom: 6px;
	margin-left: 6px;
	list-style: none;
	padding: 0;
}
#about .about-text li:before,
#services li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	color: #5ca9fb;
	font-size: 11px;
	font-weight: 300;
	padding-right: 8px;
}
#about img {
	width: 520px;
	margin-top: 10px;
	background: #fff;
	border-right: 0;
	box-shadow: 0 0 50px rgba(0,0,0,0.06);
}
#about p {
	line-height: 24px;
	margin: 30px 0;
}
/* Services Section */
#services, #industries {
	padding: 150px 0;
	background-color:black;
	color: #fff;
}
#services .service-desc,
#industries .service-desc {
	margin: 10px 10px 20px;
}
#services h2,
#indusries h2 {
	color: #fff;
}
#services .section-title h2::after,
#industries .section-title h2::after {
	/* position: absolute;
	content: "";
	background: rgba(255,255,255,.3);
	height: 4px;
	width: 60px;
	bottom: 0;
	margin-left: -30px;
	left: 50%; */
}
#services i.fa,
#industries i.fa {
	font-size: 42px;
	width: 120px;
	height: 120px;
	padding: 40px 0;
	background: linear-gradient(to right, #0673d8 0%, rgb(21, 231, 186) 100%);
	border-radius: 50%;
	color: #fff;
	box-shadow: 10px 10px 10px rgba(0,0,0,.05);
}
#services h3,
#industries h3 {
	font-weight: 500;
	padding: 5px 0;
	color: #fff;
}
#services p,
#industries p {
	color: rgba(255,255,255,.75);
}
#services ul,
#industries ul {
	padding-left: 15%;
}
#services .service-desc,
#industries .service-desc {
	margin-bottom: 40px;
}
/* Contact Section */
#contact {
	padding: 150px 0;
	background-color:black;
	color: rgba(255,255,255,.75);
}
#contact .section-title {
	margin-bottom: 40px;
}
#contact .section-title p {
	font-size: 16px;
}
#contact h2 {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
#contact .section-title h2::after {
	/* position: absolute;
	content: "";
	background: rgba(255,255,255,.3);
	height: 4px;
	width: 60px;
	bottom: 0;
	left: 30px; */
}
#contact h3 {
	color: #fff;
	margin-top: 80px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	font-weight: 400;
}
#contact form {
	padding-top: 20px;
}
#contact .text-danger {
	color: #cc0033;
	text-align: left;
}
#contact .btn-custom {
	margin: 30px 0;
	background: transparent;
	border: 2px solid #fff;
}

#contact .contact-item {
	margin: 20px 0;
}
#contact .contact-item span {
	color: rgba(255,255,255,1);
	margin-bottom: 10px;
	display: block;
}
#contact .contact-item i.fa {
	margin-right: 10px;
}
#contact .social_team {
	border-top: 1px solid rgba(146, 146, 146, 0.15);
}
#contact .social {
	padding-top: 50px;
	margin-top: 0px;
	text-align: center;
}
#contact .social ul li {
	display: inline-block;
	margin: 0 10px;
}
#contact .social i.fa {
	font-size: 22px;
	width: 48px;
	height: 48px;
	padding: 12px 0;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 50%;
	transition: all 0.3s;
}
#contact .social i.fa:hover {
	color: #608dfd;
	background: #fff;
}
/* Footer Section*/
#footer {
	background: #000;
	padding: 30px 0;
}
#footer p {
	color: rgb(192, 192, 192);
	font-size: 16px;
}
#footer a {
	color: #608dfd;
}
#footer a:hover {
	border-bottom: 2px solid #608dfd;
}
@media (max-width: 768px) {
    #about img {
    	margin: 50px 0;
    }
}
.cursor{
	cursor: pointer;
}
.img-responsive {
	width: 100%;
	height: auto;
}

/* FORM */
input, textarea {
	outline: none;
}
.contact_form {
    padding-top: 20px;
    padding-bottom: 60px;
	float: none;
}
@media screen and (max-width: 479px) {
    .contact_form {
        padding-left: .5rem;
        padding-right: .5em;
    }
}
.form_max-width {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 767px) {
    .form_max-width {
        max-width: 450px;
    }
}
.w-form {
    margin: 0 0 15px;
}
.contact-modal2_form {
    grid-column-gap: .25rem;
    grid-row-gap: .75rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
    display: grid;
}
@media screen and (max-width: 479px) {
    .contact-modal2_form {
        grid-row-gap: .5rem;
        margin-top: 20px;
    }
}
.form-field-2col {
    grid-column-gap: .5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.form-input {
    min-height: 3rem;
    border: 1px solid var(--midnight-blue);
    color: var(--midnight-blue);
    background-color: #fafafa;
    margin-bottom: auto;
    padding: .5rem 1rem;
}
.w-input, .w-select, .PhoneInputInput {
    width: 100%;
    height: 38px;
    color: #333;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
}
.PhoneInputInput {
	border-left: none;
}
.PhoneInputCountry {
	height: 38px;
	padding-left: 8px;
	background-color: #fff;
    border: 1px solid #ccc;
	border-right: none;
	color: #333;
}
.form-radio {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: auto;
    padding-left: 0;
    display: flex;
}
.w-radio {
    margin-bottom: 5px;
    padding-left: 20px;
    display: block;
}
label {
    margin-bottom: .25rem;
    font-weight: 500;
}
label {
    margin-bottom: 5px;
    font-weight: 700;
    display: block;
}
.form-input.is-text-area {
    min-height: 8rem;
    padding-top: .75rem;
}
textarea.w-input, textarea.w-select {
    height: auto;
}
input.w-button {
    -webkit-appearance: button;
}
.button-2 {
    width: 100%;
    max-width: 75rem;
    border: 1px solid var(--midnight-blue);
    color: #fff;
    text-align: center;
    background-color: #203a5a;
    border-radius: 9px;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem 4rem;
    font-size: 1.25rem;
    font-weight: 600;
}
.w-button {
    color: #fff;
    line-height: inherit;
    cursor: pointer;
	background: linear-gradient(to right, #0673d8 0%, rgb(21, 231, 186) 100%);
	box-shadow: 10px 10px 10px rgba(0, 0, 0, .05);
    border: 0;
    border-radius: 0;
    padding: 9px 15px;
    text-decoration: none;
    display: inline-block;
}
.form-radio-icon.w--redirected-checked {
    width: .875rem;
    height: .875rem;
    border-width: .25rem;
}
input[type="radio"]:checked + .w-form-formradioinput--inputType-custom {
    border-width: 4px;
    border-color: #3898ec;
}
@media screen and (max-width: 479px) {
    .form-radio-icon {
        margin-bottom: 0;
        margin-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .form-radio-icon {
        margin-left: auto;
        margin-right: auto;
    }
}
@media screen and (max-width: 991px) {
    .form-radio-icon {
        background-color: #e4e4e4;
    }
}
.form-radio-icon {
    width: .875rem;
    height: .875rem;
    margin: 0 .5rem .5rem 0;
    padding-bottom: 0;
}
.w-form-formradioinput--inputType-custom {
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
}
.btn-custom:active {
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
}
.w-radio-input {
    float: left;
    margin: 3px 0 0 -20px;
    line-height: normal;
}
input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}
.w-radio:before, .w-radio:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}
.w-radio:after {
    clear: both;
}
.form-radio-2col {
    grid-column-gap: .5rem;
    grid-row-gap: .875rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: grid
}
