@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/*** GENERIC CSS ***/
html,body {
	overflow-x: hidden;
}

body {
	font-size: 18px;
	color: #444;
	font-family: "Poppins", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
	font-family: "Righteous", sans-serif;
}

a {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	text-decoration: none;
	color: #444;
}

button {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

a:hover {
	text-decoration: none;
	color: #ffcc00;
}

a:focus {
	text-decoration: none;
}

button {
	outline: 0 !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}

button:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	color:#444;
	font-weight: 700;
}

h1 {
	font-size:65px;
	line-height: 1;
	margin-bottom: 20px;
	font-weight: 500;
	color: #fff;
	text-transform: capitalize;
}

h2 {
	font-size: 44px;
	line-height: 1;
}

h3 {
	font-size:26px;
	line-height: 1;
}

h4 {
	font-size:22px;
	line-height: 1;
}

h5 {
	font-size:20px;
	line-height: 1;
}

h6 {
	font-size:18px;
	line-height: 1;
}

.d-table {
	width: 100%;
	height: 100%;
}

.d-table-cell {
	vertical-align: middle;
}

.section-title h2 {
	color:#ffcc00;
	font-size: 60px;
	margin-bottom: 20px;
	font-weight: 400;
}

.section-title.white h2,
.section-title.white p {
	color: #fff;
}

.section-title.white .line {
	background: #fff;
}

.section-title p {
	margin-bottom: 25px;
}

.section-title h2 span {
	color: rgba(221, 133, 85, 1);
}

p {
	color: #000;
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 15px;
}

p:last-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
	height: auto;
}

.visible-xs {
	display: none;
}

.btn-default {
	display: inline-block;
	border-radius: 0;
	color: #000;
	font-size: 18px;
	background: #ffcc00;
	font-weight: bold;
	border-radius: 3px;
	line-height: 50px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0px 20px;
	min-width: 185px;
	text-align: center;
}

.btn-default:hover {
	background: #000;
	color: #fff;
}

ul.list {
	border-left: 9px solid rgba(221, 133, 85, 1);
	list-style: none;
	padding: 0;
	padding-left: 15px;
}

ul.list li {
	margin:0px 0px 15px 0px;
}

/*** PRELOADER ***/
.preloader {
	width: 100%;
	height: 100%;
	position: fixed;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 99999;
}

.preloader .lds-ripple {
	position: relative;
	width: 80px;
	height: 80px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.preloader .lds-ripple div {
	position: absolute;
	border: 2px solid #DD8555;
	opacity: 1;
	border-radius: 0;
	-webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.preloader .lds-ripple div:nth-child(2) {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}

@keyframes lds-ripple {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}

.img-rounded {
	border-radius: 15px;
}

.hover-animate {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.hover-animate:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

/*** Side-Menu ***/
.menu-btn {
	height:30px;
	width:30px;
	border-radius:100%;
	display:inline-block;
	line-height: 4px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin-right: 5px;
	cursor: pointer;
	position: relative;
}

.menu-btn:hover span {
	background: #fff;
}

.menu-btn span {
	height: 3px;
	background: #fff;
	display: inline-block;
	margin:3px 0px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.side-menu {
	background:#01075c;
	position:fixed;
	top:0px;
	right:-140%;
	width: 100%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	height:100%;
	z-index: 999999;
	height:100%;
}

.side-menu.intro {
	right:0px;
}

.side-menu ul.main-menu ul {
	padding: 0;
}

.side-menu ul.main-menu li {
	list-style:none;
	display:inline-block;
	width:100%;
}

.side-menu .middleul {
	position: relative;
	height: 70vh;
	top: 15vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow:hidden;
	overflow-y:scroll;
}

.side-menu ul.main-menu {
	padding-left:0px;
	width:100%;
}

.side-menu ul.main-menu li a {
	display: inline-block;
	padding: 10px;
	border: none;
	border-radius: 0;
	background: transparent;
	text-transform: none;
	-webkit-transition: all .25s;
	transition: all .25s;
	cursor: pointer;
	padding: 14px 0px;
	color:#fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	width: 100%;
}

.side-menu ul.main-menu li a:hover {
	background:#fff;
	color:#01075c;
}

.side-menu .socialul {
	position: absolute;
	left: 0;
	bottom: 50px;
	width: 100%;
	text-align: center;
}

.side-menu .socialul ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
}

.side-menu .socialul li {
	display: inline-block;
	margin: 0px 15px;
	text-align: center;
}

.side-menu .socialul li img {
	width: 28px;
}

.menu-btn.active span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: none;
}

.menu-btn.active span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-btn.active span {
	position: absolute;
	top: calc(50% - 8px);
}


/*** HEADER ***/
.header {
	padding:30px 0px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.navbar-brand img {
	max-height:90px;
}

.navbar-nav .nav-item {
	margin: 0px 5px;
}

.navbar-nav.rt .nav-item {
	margin: 0px 0px 0px 10px;
	display: flex;
	align-items: center;
}

.nav-link {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	border-radius: 4px;
	padding: 10px 10px !important;
	font-weight: 500;
}

.nav-link:hover,
.active>.nav-link:hover {
	background: #fff;
	color: #01075c !important;
}

.navbar-nav.rt .nav-item .nav-link {
	padding: 0px 10px !important;
}

.navbar-nav.rt .nav-item .nav-link:hover,
.navbar-nav.rt .nav-item .active>.nav-link:hover {
	background: none !important;
	color: #01075c !important;
}

.navbar-nav.rt .nav-item .nav-link:hover img {
	opacity: 1;
	transition: all .3s;
}

.navbar-nav.rt .nav-item .nav-link:hover img {
	opacity: .6;
}


.nav-link img {
	width: 25px;
}

.nav-link:focus, .nav-link:hover {
	color: #fff;
}

.lbtn>.nav-link {
	line-height: 48px;
	padding: 0px 20px !important;
	background: rgba(255, 255, 255, 1);
	font-size: 18px;
	font-weight: 500;
	color: rgba(2, 33, 61, 1);
	border-radius: 50px;
}

.lbtn>.nav-link img {
	margin-right: 10px;
}

/*** BANNER ***/
.banner {
	background: linear-gradient(rgba(2,7,93,.6) 0%, rgba(2,7,93,.6) 100%), url(../img/banner.png) 50% 50% no-repeat;
	background-size: cover;
	height: 100vh;
	padding-top: 100px;
}

.banner h1 {
	margin-top:50px;
}

.banner p {
	color: #fff;
	font-size: 30px;
	margin-bottom:30px;
	line-height:40px;
}
.banner p label {
	color: #fff;
	font-size: 20px;
}

section {
	padding: 80px 0px;
}

.imgstyle {
	height: 100%;
	position: relative;
	margin: 0;
	height: 450px;
}

.imgstyle img {
	width: 100%;
	object-fit: cover;
	height: 100%;
	border-radius: 7px;
	position: relative;
	z-index: 2;
}

.imgstyle:after {
	content: '';
	width: 100%;
	height: 100%;
	top: 20px;
	right: -20px;
	position: absolute;
	margin: 0;
	background: rgba(245, 135, 53, 0.1);
	border-radius: 7px;
	background: #ffcc00;
	opacity: .5;
}

.imgstyle.left:after {
	right: 20px;
}

/*** Services ***/
.our-services {
	padding: 10px 0px 0px 0px;
}

.our-services hr {
	opacity: .3;
	border-color: #000;
	margin: 0;
}

.sstyle>div:nth-child(4) .servicebox,
.sstyle>div:nth-child(5) .servicebox,
.sstyle>div:nth-child(6) .servicebox {
}
/* 
.sstyle>div:nth-child(1) .servicebox,
.sstyle>div:nth-child(2) .servicebox,
.sstyle>div:nth-child(3) .servicebox {
border-top: none;
} */

.sstyle>div:nth-child(3) .servicebox {
	border-right: none;
}

.sstyle>div:last-child .servicebox {
	border-right: none;
}

.servicebox {
	padding: 40px 20px;
	height: 100%;
	display: flex;
	justify-content: center;
	transition: all .3s;
	border-right: 1px solid rgba(255,255,255,0.2);
	border-top: 1px solid rgba(255,255,255,0.2);
	min-height: 450px;
	background: #004aad;
}

.servicebox:hover {
	background: #ffcc00;
}

.servicebox:hover h3 {
	color: #004aad;
}

.servicebox:hover p {
	color: #000;
}

.servicebox h3 {
	color: #ffcc00;
	font-weight: 400;
	font-size: 28px;
}

.servicebox p {
	color: #fff;
}

/*** Why Choose ***/
.why-choose .imgstyle:after {
	display: none;
}

.why-choose .imgstyle {
	height: 750px;
}

.why-choose .imgstyle img {
	border-radius: 0px;
}

/*** Contact ***/
section.contact-form {
	background: #f8f8f8;
}

.form-control  {
	padding-left: 16px;
	border-radius: 4px;
	height: 60px;
	margin-bottom: 15px;
}

textarea.form-control {
	height: 186px;
	resize: none;
	padding-top: 18px;
}

.linkinfo {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.linkinfo div {
	padding-left: 15px;
}

.linkinfo>i {
	min-width: 28px;
	text-align: center;
	font-size: 25px;
	color: #ffcc00;
	color: #000;
}

.linkinfo h3 {
	margin: 0;
	color: #ffcc00;
	font-weight: 400;
	font-size: 24px;
}

.linkinfo h3 span {
	color: #000;
	font-size: 16px;
	line-height: 28px;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
}


/*** Footer ***/
.footer {
	background: #004aad;
	padding: 25px 0px;
}

.footer p {
	color: #fff;
	margin: 0;
}


input.wpcf7-form-control.wpcf7-not-valid{
	border: 2px solid #f00 !important;
}
span.wpcf7-not-valid-tip{
	display:none;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing{
	display:inline-block !important; 
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok{
	display:inline-block !important;
}
.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output{
	display:none !important;
}
.wpcf7 form .wpcf7-response-output{
	display:inline-block !important;
}
section.banner.singlepage {
	height: inherit;
}

section.banner.singlepage h1{
	font-size:40px;
	padding:40px 0px;
}

.banner.new{
	position: relative;
	height: 100vh;
}

.banner.new h1{
	margin-top:0px;
}
.banner.new:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;
	opacity: 0;
	transition-property: opacity;
	transition-timing-function: linear;
	z-index: 1;
}

.slider-banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}

.h-100vh {
	height: 100vh;
}

.zindex {
	position: relative;
	z-index: 3;
}

.banner .owl-dots {
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 100%;
}
.owl-theme .owl-dots .owl-dot span {
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: #838481;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: rgba(255, 255, 255, 1);
}

.slider-banner .img:after {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 40%;
	pointer-events: none;
	z-index: 1;

	top: auto;
	bottom: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.65)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
}

.slider-banner .img:before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 40%;
	pointer-events: none;
	z-index: 1;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 100%);
	height: 20%;
}


/*** NEW SERVICES ***/
.new-services {
	padding:70px 0px;
}

.banner.new h1 {
	font-size:75px;
}

.new-services h2, .banner.new h1, .new-mission h2, .new-choose h2 {	
	font-family: "Montserrat", sans-serif;
	font-weight:bold;
	text-transform:uppercase;
}

.new-services .servicebox {
	background:#fff;
	padding:40px 15px;
	border-radius:15px;
	border:2px solid #e8e8e8 !important;
	min-height:auto;
}

.new-services .servicebox:hover {
	border:2px solid #000;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.new-services .servicebox img {
	filter:invert(1);
}

.new-services .servicebox p {
	color:#000;
}

.new-services .servicebox h3 {
	font-family: "Montserrat", sans-serif;
	font-weight:bold;
	text-transform:uppercase;
}


.new-mission {
	background:#004aad;
}

.new-mission p {
	color:#fff;
}

.new-choose {
	background:#f2f2f2;
}

@media only screen and (max-width:767px) {
	.banner.new h1 {
		font-size:25px;
		margin-top:-50px;
		line-height: 1.5;
	}	
}

.footer-menu li a {
	color: #fff;
	font-size: 16px;
}

.footer-menu li {
	display: inline-block;
	margin-left: 10px;
}

.footer-menu {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
}


.our-mission.singlepage p {
    margin-bottom: 25px;
}


.our-mission.singlepage ul li {
    margin-bottom: 5px;
}


.our-mission.singlepage ul {
    font-size: 15px;
    padding-left: 21px;
    color: #000;
}


.our-mission.singlepage h5 {
    margin-bottom: 15px;
    margin-top: 30px;
    font-size: 24px;
    color: #000;
}

.our-mission.singlepage table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 11px 20px;
    color: #000;
}

.our-mission.singlepage table {
    border: 1px solid #ccc;
    margin-bottom: 20px;
}


.our-mission.singlepage h3 {
    color: #000;
}


.our-mission.singlepage h5 {
    
	margin:30px 0px;
}

.our-mission.singlepage a{
	color:#004aad;
}
.our-mission.singlepage a:hover{
	color:#ffcc00;
}

.page-banner {
    background: linear-gradient(rgba(0, 0, 0, .6) 0%, rgba(0, 0, 0, .6) 100%), url(https://www.restotech.tech/wp-content/uploads/2024/07/annie-spratt-FSFfEQkd1sc-unsplash.jpg) 50% 50% no-repeat;
    background-size: cover;
    padding: 150px 0px;
    padding-top: 220px;
}

.page-banner h1 {
    margin: 0;
    font-size: 60px;
}

.contact-form.deletepage label {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form.deletepage .btn-default {
    border: 1px solid transparent;
}

.contact-form.deletepage .btn-default.borderbtn {
    background: none;
    border: 1px solid #ccc;
}

.contact-form.deletepage .btn-default {
    margin: 0px 5px;
}

.contact-form.deletepage .btn-default.borderbtn:hover {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #000;
}

.contact-form.deletepage select.form-control {
    appearance: auto;
    padding-left: 10px;
}


.contact-form.deletepage .spacestyle {
    background: #f3f3f3;
    border-radius: 15px;
    padding: 75px 40px;
}
.contact-form.deletepage  {
    background: #f3f3f3;
    border-radius: 15px;
    padding: 75px 40px;
	background:#fff;
}


/*** ANALYTICS PAGE ***/
.list-content {
	padding:75px 0px;
}

.list-content h2 {
	color:#fff;
	font-size:36px;
	text-transform:uppercase;
}

.list-content ul {
	margin:0% 0% 0% 10%;
	padding:0px;
	list-style:none;
}

.list-content ul li {
	color:#fff;
	margin:0px 0px 10px 0px;
	padding:0% 0% 0% 2%;
	position:relative;
}

.list-content ul li:before {
    content: "\f012";
    left: -10px;
    position: absolute;
    top: 0;
    font-family: FontAwesome;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -ms-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
}