/*
##############################################
Resets
##############################################
*/

* {
	margin:0;
	padding:0;
	text-decoration:none;
    box-sizing:border-box;
    font-family:'Ubuntu', 'Trebuchet', sans-serif;
	max-width:99999px;
    border:0;
}

button {
    border:0;
    background-color:transparent;
}

body {
    max-width:100vw;
    overflow-x:hidden;
}

/*
##############################################
Flexbox 
##############################################
*/

.flex {
	display:flex;
}

.wrap {
	flex-wrap:wrap;
}

.col {
	flex-direction:column;
}

.around {
	justify-content:space-around;
}

.between {
	justify-content:space-between;
}

.grow {
	flex-grow:1;
}

.full {
	width:100%;
	max-width:100%;
	min-height:100vh;
}

.center {
	align-items:center;
}

.end {
	justify-content:flex-end;
}

.self-end {
	align-self:flex-end;
}

.fullpad {
	padding:100px;
}

@media only screen and (max-width: 1000px) {
	.fullpad {
		padding:50px;
	}
}

@media only screen and (max-width: 600px) {
	.fullpad {
		padding:25px;
	}
}

.sidepad {
	padding-left:100px;
	padding-right:100px;
}

.halfside {
	padding-left:50px;
	padding-right:50px;
}

/*
##############################################
Globals
##############################################
*/

a, button {
	transition:0.2s;
	cursor:pointer;
}

.boxbox {
    width:1500px;
}

@media only screen and (max-width: 1500px) {
	.boxbox {
		width:100%;
	}
}

.main-button {
    color:#fff;
    font-weight:500;
    font-size:18px;
    border:2px solid #fff;
    border-radius:5px;
    padding:15px 0;
    padding-left:25px;
    width:300px;
    margin-top:30px;
    display:inline-block;
    opacity:.75;
    text-align:center;
}

.main-button .main-arrow {
    width:25px;
    height:12px;
    opacity:0;
    transition:all .3s;
    background-image:url('images/icon-arrow.png');
    background-repeat:no-repeat;
    background-position: center left;
    display:inline-block;
}

.main-button:hover .main-arrow {
    opacity:1;
    margin-left:20px;
}

.main-button:hover {
    opacity:1;
    background-color:#222;
    color:#fff;
    border-color:#222;
}

.light h4 {
    font-size:24px;
    color:#222;
}

.light h2 {
    color:#444;
    font-size:58px;
    font-weight:500;
}

.light p {
    color:#444;
    font-size:18px;
    line-height:30px;
}

.dark h2 {
    color:#fff;
    font-size:48px;
    font-weight:500;
}

.dark h4 {
    font-size:24px;
    color:#fff;
}

.dark p {
    color:#fff;
    font-size:18px;
    line-height:30px;
}

.quarter {
    width:25%;
}

.half {
    width:50%;
}

@media only screen and (max-width: 1000px) {
	footer .quarter {
		width:auto;
	}
    footer .half {
        width:auto;
    }
}

.third {
    width:33%;
}

/*
##############################################
Subpage Section
##############################################
*/

.subpage h1 {
    padding-top:80px;
    font-size:58px;
    font-weight:500;
    line-height:58px;
}

.subpage h2 {
    padding-bottom:80px;
    font-size:18px;
    letter-spacing:0.3em;
    font-weight:400;
    color:#009fdb;
}

@media only screen and (max-width: 500px) {
    .subpage h1 {
        font-size:36px;
        padding-top:40px;
        line-height:36px;
    }
    .subpage h2 {
        padding-bottom:40px;
    }
}

/*
##############################################
Minimenu Section
##############################################
*/

.minimenu-button {
    position:fixed;
    top:0;
    right:100;
    width:64px;
    padding:10px;
    padding-top:25px;
    border-bottom-left-radius:5px;
    border-bottom-right-radius:5px;
    background-color:#eee;
    z-index:999;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.25);
    transition:all .3s;
    display:none;
}

.minimenu-button .line {
    background-color:#111;
    height:5px;
    transition:all .3s;
}

.minimenu-button-active {
    background-color:#54a4ff;
    padding-top:45px;
    padding-bottom:25px;
}

.minimenu-button-active .line {
    background-color:#fff;
    transform:rotate(45deg);
}

.minimenu-button-active .line:not(:first-of-type) {
    transform:rotate(-45deg);
    position:relative;
    margin-top:-13px;
}

.minimenu-button-active .line:last-of-type {
    opacity:0;
    transform:unset;
}

.minimenu-button .line:not(:last-of-type) {
    margin-bottom:8px;
}

@media only screen and (max-width: 1200px) {
    .minimenu-button {
        display:block;
    }
}

@media only screen and (max-width: 1000px) {
    .minimenu-button {
        right:50;
    }
}

@media only screen and (max-width: 600px) {
    .minimenu-button {
        right:25;
    }
}

@media only screen and (max-width: 500px) {
    .minimenu-button {
        width:48px;
        padding:15px 5px 10px 5px;
    }
    .minimenu-button-active {
        padding-top:35px;
        padding-bottom:25px;
    }
}

/*
##############################################
Subheader Section
##############################################
*/

.subheader {
    background-color:rgba(0,0,0,0.25);
    border-bottom:1px solid rgba(255,255,255,0.25);
    padding:10px 0;
}

.subheader .contact a {
    display:block;
    background-repeat:no-repeat;
    background-position:center left;
    padding-left:32px;
    color:#fff;
    font-size:18px;
    line-height:36px;
}

.subheader .contact a:hover {
    text-decoration:underline;
}

.subheader .contact .tel {
    background-image:url('images/icon-tel.png');
}

.subheader .contact .mail {
    background-image:url('images/icon-mail.png');
}

.subheader .contact a:first-of-type {
    margin-right:20px;
}

.subheader .connect a {
    width:20px;
    height:20px;
    margin-right:15px;
    background-position:center center;
    background-repeat:no-repeat;
    background-size:contain;
    display:block;
    opacity:.75;
}

.subheader .connect .facebook {
    background-image:url('images/socials-fb.png');
}

.subheader .connect .twitter {
    background-image:url('images/socials-tw.png');
}

.subheader .connect .linkedin {
    background-image:url('images/socials-li.png');
}

.subheader .connect .insta {
    background-image:url('images/socials-ig.png');
}

.subheader .connect a:hover {
    opacity:1;
}

@media only screen and (max-width: 700px) {
    .subheader {
        display:none;
    }
}

/*
##############################################
Header Section
##############################################
*/

.home-header {
    position:absolute;
    width:100%;
    height:150vh;
    z-index:1;
}

header {
    background-image:url('images/hero-bg.jpg');
    background-size:cover;
    color:#fff;
}

header nav a {
    color:#fff;
    font-weight:500;
    font-size:20px;
    margin-left:80px;
    padding:10px 20px;
    opacity:.9;
}

header nav a:first-of-type {
    margin-left:0;
}

header nav a:hover {
    background-color:#00a6df;
    opacity:1;
}

.header-active {
    background-color:#ffc000 !important;
    pointer-events:none;
    color:#222;
    opacity:1;
}

.header-active:hover {
    color:#fff;
}

.header-over {
    position:relative;
    z-index:3;
}

.hero-text {
    margin-top:150px;
}

.hero-text h1 {
    font-size:72px;
    font-weight:500;
    line-height:72px;
}

.headpad {
    padding-top:50px;
}

.header-logo:hover {
    opacity:.5;
}

.solutions-header {
    background-image:url('images/header-solutions.jpg');
}

@media only screen and (max-width: 1200px) {
	header nav {
		display:none;
	}
    .subheader .end {
        justify-content:flex-start;
    }
}

@media only screen and (max-width: 800px) {
    .hero-text h1 {
        font-size:56px;
        line-height:56px;
    }
}

@media only screen and (max-width: 600px) {
    .headpad .flex {
        justify-content:space-around;
    }
    .header-logo img {
        max-width:60vw;
    }
    .hero-text h1 {
        font-size:48px;
        line-height:48px;
        text-align:center;
    }
}

@media only screen and (max-width: 400px) {
    .hero-text h1 {
         font-size:36px;
            line-height:36px;
    }
}

@media only screen and (max-height: 600px) {
    .hero-text {
        margin-top:80px;
    }
}

/*
##############################################
About Section
##############################################
*/

.about-header {
    background-image:url('images/about-header-bg.jpg');
}

.about {
    background-image:url('images/about-wrap.png');
    background-position:top center;
    padding-top:850px;
    padding-bottom:200px;
    position:relative;
    z-index:2;
    pointer-events:none;
}

.header-line {
    width:75px;
    height:5px;
    background-color:#4056b0;
    background-image: linear-gradient(to right,#659fda,#4056b0);
    margin:20px 0;
}

.about-box {
    pointer-events:auto;
}

.about-text p {
    width:35%;
}

.about-text .main-button {
    color:#444;
    border-color:#444;
    margin-top:30px;
}

.about-text .main-button:hover {
    color:#fff;
    background-color:#222;
}

@media only screen and (max-width: 900px) {
    .about-text p {
        width:50%;
    }
}

@media only screen and (max-width: 700px) {
    .about {
        background-image:unset;
        background-color:#f6f6f6;
        padding-top:50px;
        padding-bottom:50px;
    }
    .home-header {
        position:relative;
        height:100vh;
    }
    .about-text p {
        width:100%;
    }
    .about-text {
        text-align:center;
    }
    .about .header-line {
        margin-left:auto;
        margin-right:auto;
    }
}

@media only screen and (max-width: 600px) {
    .hero-text .main-button {
        width:90%;
        margin-left:auto;
        margin-right:auto;
        display:block;
    }
}


/*
##############################################
Services Section
##############################################
*/

.services-header {
    background-image:url('images/services-header-bg.jpg');
}

.services {
    background-color:#f6f6f6;
    background-image:url('images/services-bg.jpg');
    background-position:center bottom;
    background-size:100% auto;
    background-repeat:no-repeat;
    padding-bottom:50px;
    position:relative;
    z-index:98;
}

.services p {
    width:65%;
    text-align:center;
}

.service-box {
    border:1px solid #aaa;
    padding:60px 30px;
    background-color:#fff;
    width:380px;
    margin-top:50px;
    transition:all .3s;
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.service-box:hover {
    margin-top:40px;
    margin-bottom:10px;
    background-color:#193950;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.25);
}

.service-box:hover p, .service-box:hover h4 {
    color:#fff;
}

.service-box p {
    text-align:left;
    font-size:16px;
    line-height:24px;
    flex:1;
    width:auto;
}

.service-box span {
    position:absolute;
    display:block;
    bottom:-30;
    left:25%;
    width:50%;
    border:1px dotted transparent;
    text-align:center;
    opacity:0;
    transition:all .5s;
    color:rgba(255,255,255,.75);
    background-color:rgba(0,0,0,.25);
    padding:10px 25px;
    border-top-left-radius:5px;
    border-top-right-radius:5px;
    font-weight:600;
    font-size:16px;
}

.service-img {
    background-image:url('images/services-clients.png');
    background-position:center center;
    background-repeat:no-repeat;
    background-size:contain;
    width:150px;
    height:60px;
    margin-right:20px;
    margin-top:-20px;
}

.services .main-button {
    margin-top:50px;
    border-color:#111;
    color:#111;
}

.services .main-button:hover {
    color:#fff;
}


@media only screen and (max-width: 1300px) {
    .service-box {
        width:48%;
    }
}

@media only screen and (max-width: 900px) {
    .service-box {
        width:100%;
    }
    .services p {
        width:100%;
    }
}

@media only screen and (max-width: 600px) {
    .services h2 {
        font-size:42px;
    }
    .service-box .flex {
        display:block;
    }
    .service-img {
        margin:auto;
    }
    .service-box h4, .service-box p {
        text-align:center;
    }
    .halfside {
        padding-left:25px;
        padding-right:25px;
    }
}

@media only screen and (max-width: 500px) {
    .service-box {
        padding:30px 15px;
    }
}

/*
##############################################
Clients Section
##############################################
*/

.clients {
    background-image: linear-gradient(to right,#213154,#31477e);
    transition:all 1s;
}

.client-text {
    width:40%;
}

.monial-box {
    width:45%;
}

.monial-box button {
    min-width:28px;
    background-image:url('images/arrow.png');
    background-size:auto 24px;
    background-repeat:no-repeat;
    background-position:center center;
    opacity:.5;
}

.monial-box button:hover {
    opacity:.75;
}

.monial-left {
    transform:rotate(180deg);
}

.monial-right:hover {
    margin-right:-3px;
    margin-left:3px;
}

.monial-left:hover {
    margin-left:-3px;
    margin-right:3px;
}

.monial-wrap {
    overflow:hidden;
    margin:0 20px;
}

.client-monial {
    flex-shrink:0;
    width:100%;
    margin-right:20%;
}

.client-monial p {
    font-size:24px;
    font-weight:500;
    margin-bottom:20px;
}

.monial-img {
    background-color:gray;
    border:1px solid black;
    width:200px;
    height:40px;
}

.client-monial span {
    font-size:18px;
    font-weight:500;
    color:#fff;
    text-align:right;
}

/*
##############################################
Footer Section
##############################################
*/

footer {
    background-color:#eee;
    background-image:url('images/footer-bg.jpg');
    background-position:center bottom;
    background-size:100% auto;
    background-repeat:no-repeat;
    padding-bottom:50px;
}

footer .location img {
    margin-bottom:20px;
}

footer nav, footer form {
    margin-top:20px;
}

footer .contact {
    margin:20px 0;
}

footer .contact a {
    display:block;
    background-repeat:no-repeat;
    background-position:center left;
    padding-left:36px;
    color:#444;
    font-size:18px;
    line-height:42px;
    font-weight:500;
}

footer .contact a:hover {
    text-decoration:underline;
    color:#222;
}

footer .contact .tel {
    background-image:url('images/icon-tel.png');
}

footer .contact .mail {
    background-image:url('images/icon-mail.png');
}

footer .contact .fax {
    background-image:url('images/icon-fax.png');
}

footer .connect a {
    width:32px;
    height:32px;
    margin-right:10px;
    background-position:center center;
    background-repeat:no-repeat;
    display:block;
    border-radius:5px;
    opacity:.75;
}

footer .connect .facebook {
    background-image:url('images/footer-fb.png');
}

footer .connect .twitter {
    background-image:url('images/footer-tw.png');
}

footer .connect .insta {
    background-image:url('images/footer-ig.png');
}

footer .connect .linkedin {
    background-image:url('images/footer-li.png');
}

footer .connect a:hover {
    opacity:1;
}

footer nav a {
    font-size:18px;
    font-weight:bold;
    color:#5f94d3;
    text-transform:uppercase;
    display:block;
    margin-top:25px;
}

footer nav a:hover {
    color:#2b49a7;
}

footer form {
    background-color:#f6f6f6;
    border:1px solid #ccc;
    border-radius:5px;
    padding:40px;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.25);
}

footer form input[type=text] {
    padding:15px;
    border:1px solid #ccc;
    background-color:#fff;
    border-radius:5px;
    width:50%;
    font-size:18px;
    display:inline-block;
}

#contactmsg {
    width:100%;
    margin-top:20px;
}

footer form input:first-of-type {
    margin-right:20px;
}

footer form p {
    margin:20px 0;
}

footer form button {
    background-color:#3d54b1;
    color:#fff;
    border:0;
    border-radius:5px;
    padding:15px 50px;
    text-transform:uppercase;
    font-size:16px;
    font-weight:bold;
    margin-top:20px;
}

footer form button:hover {
    background-color:#5f95d5;
}

footer form span {
    margin-left:10px;
    font-weight:500;
    transition:all .3s;
    opacity:0;
}

.breakbar {
    width:100%;
    background:linear-gradient(to right,#4056b0,#659fda,#4056b0);
    height:10px;
    position:relative;
}

.locationbar {
    background-color:#111;
}

.locationbar .boxbox {
    padding:50px 100px;
}

.locationbar span {
    font-size:36px;
    font-weight:400;
    color:#fff;
    opacity:.25;
    text-align:center;
    display:inline-block;
    cursor:default;
    transition:all .5s;
}

.locationbar span:hover {
    opacity:.5;
}

footer nav {
    display:none;
}

footer .location {
    margin-right:50px;
}

footer .pop {
    opacity:1;
    padding-left:20px;
}

footer .missing {
    background-color:#fde8e8 !important;
    border-color:#fac7c7 !important;
}

@media only screen and (max-width: 1200px) {
    footer nav {
        display:none;
    }
}

@media only screen and (max-width: 1100px) {
    .locationbar span {
        font-size:24px;
    }
}

@media only screen and (max-width: 1000px) {
    .locationbar .boxbox {
        padding:50px;
    }
}

@media only screen and (max-width: 800px) {
    footer .boxbox {
        flex-direction:column-reverse;
    }
    footer .location {
        margin-right:0;
        width:100%;
        display:flex;
        justify-content:space-between;
        margin-top:30px;
    }
    footer {
        padding-bottom:0;
    }
    footer .fullpad {
        padding-top:0;
    }
    footer form {
        margin-top:-40px;
        position: relative;
        z-index:99;
    }
    .locationbar span {
        font-size:18px;
        font-weight:500;
    }
}

@media only screen and (max-width: 650px) {
    footer .location {
        margin-right:0;
        width:100%;
        display:block;
        justify-content:unset;
        margin-top:30px;
    }
}

@media only screen and (max-width: 600px) {
    .locationbar .boxbox {
        padding:25px;
    }
    footer form .flex {
        display:block
    }
    footer form input[type=text] {
        width:100%;
        margin-right:0;
    }
    #contacttelemail {
        margin-top:20px;
    }
}

@media only screen and (max-width: 500px) {
    footer form p {
        font-size:16px !important;
    }
    footer form {
        padding:25px;
    }
    footer form button {
        width:100%;
    }
    .locationbar .boxbox {
        display:none;
    }
    footer form input {
        font-size:16px !important;
    }
}

/*
##############################################
Subfooter Section
##############################################
*/

.subfooter {
    background-color:#111;
    padding:10px 0;
    color:#aaa;
    font-size:14px;
    text-align:center;
}

.subfooter span {
    color:#666;
    margin:0 5px;
}

.subfooter a {
    color:#5f94d3;
}

@media only screen and (max-width: 1000px) {
    .sidepad {
        padding-left:50px;
        padding-right:50px;
    }
}

@media only screen and (max-width: 600px) {
    .sidepad {
        padding-left:25px;
        padding-right:25px;
    }
}

@media only screen and (max-width: 500px) {
    .subfooter .boxbox .flex {
        display:block;
    }
}

/*
##############################################
Animation Classes
##############################################
*/

#monial-img, #monial-text, #monial-name {
    transition:all 1s;
}

.fade-hide {
    opacity:0;
}

.fade-left {
    opacity:0;
    margin-left:-10px;
    margin-right:10px;
}

.fade-right {
    opacity:0;
    margin-right:-10px;
    margin-left:10px;
}

/*
##############################################
About Page
##############################################
*/

.subout {
    background-color:#eee;
}

.subout-bg {
    background-image:url('images/subout-bg.png');
    background-size:contain;
    background-position:top right;
    background-repeat:no-repeat;
    padding:150px 100px;
}

.subnet {
    background-color:#eee;
    background-image:url('images/network-bg.jpg');
    background-size:cover;
    background-position:top center;
    background-repeat:no-repeat;
}

.subnet-bg {
    padding:150px 100px;
}

@media only screen and (max-width: 1500px) {
	.subout-bg {
		padding:100px;
	}
}

.subout-text p {
    width:50%;
}

.theteam {
    background-image:url('images/theteam-bg.jpg');
    background-size:cover;
    background-position:bottom center;
    background-repeat:no-repeat;
    background-color:#eee;
}

.teampad {
    padding:100px 50px;
}

.theteam p {
    width:65%;
    text-align:center;
}

.theteam-box {
    width:400px;
    background-color:#fff;
    overflow:hidden;
    transition:all .3s;
    border-bottom:5px solid #aaa;
    position:relative;
}

.theteam-text {
    padding:20px;
}

.theteam-box p {
    width:300px;
    left:50;
    bottom:-150;
    text-align:center;
    font-size:14px;
    color:#eee;
    position:absolute;
    transition:all .3s;
}

.theteam-box:hover p {
    margin-top:25px;
    bottom:unset;
}

.theteam-box:hover {
    background-color:#222;
    border-bottom-color:#222;
}

.theteam-img {
    background-image:url('images/suitman.jpg');
    background-size:cover;
    background-position:center center;
    height:300px;
    transition:all 0.3s;
}

.theteam-box:hover .theteam-img {
    height:0;
}

.theteam-box:hover h4 {
    color:#fff;
}

.theteam h5 {
    color:#009fdb;
    font-weight:400;
    font-size:18px;
}

.theteam h4, .theteam h5 {
    text-align:center;
}

.theteam-box .socials {
    position:absolute;
    bottom:-100;
    padding-top:10px;
    width:300px;
    left:50;
    transition:all .3s;
    border:1px dotted transparent;
    border-top-color:#666;
}

.theteam-box:hover .socials {
    bottom:20;
}

.theteam-box .socials a {
    width:32px;
    height:32px;
    margin-right:10px;
    display:block;
    border-radius:5px;
    opacity:.35;
    background-position:center center;
    background-repeat:no-repeat;
}
.theteam-box .socials a:hover {
    opacity:1;
}

.theteam-box .socials .facebook {
    background-image:url('images/socials-fb.png');
}

.theteam-box .socials .twitter {
    background-image:url('images/socials-tw.png');
}

.theteam-box .socials .linkedin {
    background-image:url('images/socials-li.png');
}

.theteam-box .socials .insta {
    background-image:url('images/socials-ig.png');
}

.teamlist {
    margin-top:100px;
}

.subnet .subout-text p {
    width:100%;
}

.subnet .newsgrid {
    margin-right:50px;
    flex-shrink:0;
}

.subnet .newsgrid .newsbox {
    width:160px;
    background-color:#000;
    border-radius:5px;
    height:120px;
    opacity:.15;
    transition:all .3s;
}

.subnet .newsgrid .newsbox:hover {
    opacity:.3;
}

.subnet .newsgrid .newsbox:not(:last-of-type) {
    margin-right:20px;
}

.subnet .newsgrid .newsrow:not(:last-of-type) {
    margin-bottom:20px;
}

/*
##############################################
Services Page
##############################################
*/

.subvices h2 {
    font-size:42px;
    color:#111;
    padding-left:60px;
    background-position:center left;
    background-repeat:no-repeat;
    background-size:contain;
    display:inline-block;
}

.subvices h3 {
    font-size:32px;
    color:#54a4ff;
    line-height:42px;
    margin-bottom:20px;
}

.subvices .sidebar {
    border-right:1px solid #ddd;
    margin-right:50px;
}

.subvices .sidebar span {
    font-size:32px;
    font-weight:500;
    padding-bottom:20px;
    display:block;
}

.subvices .sidebar ul {
    background-color:#fff;
}

.subvices .sidebar li {
    list-style-type:none;
    width:300px;
    padding:20px;
    padding-left:0;
    border-bottom:1px solid #ddd;
    color:#666;
    transition:all .3s;
    background-position:center right -20px;
    background-image:url('images/dark-arrow.png');
    background-repeat:no-repeat;
    background-size:10px auto;
}

.subvices .sidebar li:hover {
    cursor:pointer;
    color:#222;
    padding-left:20px;
    background-position:center right 20px;
}

.subvices .sidebar li:last-of-type {
    border-bottom:0;
}

.subvices .sidebar .active {
    font-weight:bold;
    border-left:5px solid #ffc000;
    padding-left:20px;
    color:#222;
    background-image:url('images/dark-arrow-active.png');
    background-position:center right 20px;
}

.subvices p {
    margin-bottom:20px;
}

.subvices p:last-of-type {
    margin-bottom:0;
}

.subvice-box {
    transition:.5s all;
    margin-right:20px;
    margin-left:-20px;
    opacity:0;
    display:none;
}

.subvice-show {
    display:block;
}

.subvice-active {
    opacity:1;
    margin:0;
}

.subvice-box ul li {
    font-size:18px;
    line-height:24px;
    margin-left:50px;
    margin-top:10px;
    color:#444;
}

@media only screen and (max-width: 1200px) {
    .subvices .sidebar {
        display:none;
    }
    .subvice-box {
        display:block;
        opacity:0.5;
        margin:0;
        cursor:pointer;
    }
    .subvice-box:hover {
        opacity:1;
    }
    .subvice-box h2 {
        transition:0.3s;
    }
    .subvice-box:hover h2 {
        padding-left:80px;
    }
    .subvice-box:not(:last-of-type) {
        border-bottom:1px solid #ccc;
        padding-bottom:20px;
        margin-bottom:20px;
    }
    .subvices .boxbox .flex {
        display:block;
    }
    .subvice-hide {
        display:none;
    }
}

@media only screen and (max-width: 900px) {
    .subvice-box h2 {
        font-size:32px;
    }
    .subvice-box h3 {
        font-size:24px;
        line-height:32px;
    }
}

@media only screen and (max-width: 800px) {
    .subvices {
        padding-bottom:30px;
    }
}

@media only screen and (max-width: 700px) {
    .subvice-box:hover h2 {
        padding-left:50px;
    }
    .subvice-box h2 {
        font-size:24px;
        padding-left:40px;
        background-size:auto 28px;
    }
    .subvice-box h3 {
        font-size:18px;
        line-height:24px;
    }
    .subvice-box p {
        font-size:16px;
    }
    .subvice-box ul li {
        font-size:16px;
    }
}

.connect {
    display:none;
}

/*
@@@@@@@@@@@@@@@@@@@@@@@
Contact Popup
@@@@@@@@@@@@@@@@@@@@@@@
*/

.thanks {
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    background-color:rgba(106,194,89,.95);
    z-index:100;
    opacity:0;
    pointer-events:none;
    transition:all .5s;
    color:#fff;
    text-align:center;
}

.thanks-on {
    opacity:1;
    pointer-events:all;
}

.check {
    background-image:url('images/check-mark.png');
    background-repeat:no-repeat;
    background-position:center top;
    padding-top:100px;
    transition:all .3s;
}

.thanks span {
    display:block;
    font-size:48px;
    line-height:48px;
    font-weight:400;
    margin-bottom:15px;
    text-shadow: 0px 3px 5px rgba(0,0,0,0.25);
}

.thanks .close {
    font-size:18px;
    background-color:#eee;
    color:#6ac259;
    padding:15px 100px;
    font-weight:500;
    display:inline-block;
    border-radius:5px;
    transition:all .3s;
    cursor:pointer;
    opacity:0;
}

.thanks .close:hover {
    background-color:#fff;
    color:#222;
    box-shadow: 0px 3px 5px rgba(0,0,0,0.25);
}

.hidedown {
    margin-top:20px;
    opacity:0;
}

.closedown {
    margin-top:20px;
    opacity:1 !important;
}

.imgRight {
    max-width:50%;
    float:right;
    margin:8px 0 30px 30px;
    border-radius:5px;
}

.imgLeft {
    max-width:50%;
    float:left;
    margin:8px 30px 30px 0;
    border-radius:5px;
}

@media only screen and (max-width: 800px) {
    .imgRight, .imgLeft {
        max-width:100%;
        float:none;
        margin:10px 0 30px 0;
    }
}

.miniOver {
    background-color:rgba(25,57,80,0.95);
    position:fixed;
    top:0;
    bottom:0;
    left:0;
    right:0;
    z-index:101;
    display:flex;
}  

.miniOver .link {
    font-size:36px;
    color:#fff;
    padding:20px 0 20px 20px;
    display:block;
    transition:all .3s;
    opacity:0;
}

.miniOver .link:hover {
    padding-left:20px;
    color:#5f95d5;
}

.miniOver .show {
    padding-left:0;
    opacity:1;
}

.animate {
	transition:all 1s;
}

.hide {
	opacity:0;
    pointer-events:none;
}

.hideleft {
	margin-left:-50px;
	margin-right:50px;
	opacity:0;
    pointer-events:none;
}

.hideright {
	margin-right:-50px;
	margin-left:50px;
	opacity:0;
    pointer-events:none;
}

.hidedown {
	margin-bottom:-50px;
	margin-top:50px;
	opacity:0;
    pointer-events:none;
}

.hideup {
	margin-top:-50px;
	margin-bottom:50px;
	opacity:0;
    pointer-events:none;
}

.loader {
    z-index:1000;
    width:100%;
    height:100%;
    bottom:0;
    position:fixed;
    background-color:#fafafa;
    transition:all .5s;
}

.loader .swicon {
    height:100px;
    width:100px;
    background-image:url('images/sw-icon.png');
    background-position:center center;
    background-size:60px auto;
    background-repeat:no-repeat;
    background-color:#fff;
    box-shadow:0 0 10px rgba(0,0,0,.15);
    margin-left:-50px;
    margin-top:-50px;
    position:absolute;
    border-radius:50%;
    left:50%;
    top:50%;
    transition:all .5s;
}

.loader .swcircle {
    height:104px;
    width:104px;
    border-top:10px solid #2b49a7;
    margin-left:-52px;
    margin-top:-52px;
    position:absolute;
    border-radius:50%;
    left:50%;
    top:50%;
    animation: rotating 1s linear infinite;
    transition:all .5s;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#contactadd {
    height:0;
    width:0;
    padding:0;
    margin:0;
    overflow:hidden;
    border:0;
}