/* ------------------------------------------------ */
                /* Basic Setup */
/* ------------------------------------------------ */

:root {
    --primary-color: #ff7600;
    --primary-background: #f4f4f4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #555;
    font-family: 'Poiret One', cursive, 'Arial';
    font-size: 25px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear:both;
    display: block;
    height: 0;
    visibility: hidden;
}

/* ------------------------------------------------ */
                /* ReUsable Components */
/* ------------------------------------------------ */

.row {
    max-width: 1140px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}


a {
    text-decoration: none;
    border: 1px solid #fff;
}

a:hover {
    border: 1px solid var(--primary-color);
    transition: 0.5s;
    transform: scale(0.90);
}


/* ------------------------------------------------ */
                /* Header */
/* ------------------------------------------------ */

header {
   /* background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(img/background.jpg);     */
    background-size: cover;
    background-position: center;
    height: 100vh;
    background-attachment: fixed;
}

.welcome {
    position: absolute;
    width: 1140px;
    top: 40%;
    left: 40%;
    transform: translate(-40%, -40%);
}

.logo {
    height: 45px;
    width: auto;
    float: left;
    margin-left: -170px;
    margin-top: 10px;
}

.overlay-notice {
    width: 1000px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
}


/* ------------------------------------------------ */
                /* Blinker */
/* ------------------------------------------------ */


.blinker-text {
    border: 1px solid #fff;
    background-color: rgba(10, 250, 0, 0.4);
    text-align: center;
    color: #00ff0a;
    line-height: 145%;
    width: 25%;
    border-radius: 15px;
    animation: blinker 1s linear infinite;
    float: right;
    margin-right: 575px;
    float: right;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.blinker-message {
    border: 1px solid #00fa3a;
    background-color: rgba(0, 250, 58, 0.4);
    text-align: center;
    color: #ffffff;
    line-height: 145%;
    width: 800px;
    height: 600px;
    border-radius: 15px;
    animation: blinker 1.5s linear infinite;
    float: right;
    margin-right: 300px;
    margin-top: 100px;
    font-size: 60px;
    text-transform: uppercase;
}

.announcement {
    border: 1px solid #fff;
    background-color: rgba(10, 250, 0, 0.4);
    text-align: center;
    color: #00ff00;
    line-height: 145%;
    border-radius: 15px;
    width: 95%;
    font-weight: 600;
    display: flex;
    margin: 0 auto;
    text-align: center;
    pointer-events: none;
    font-size: 36px;
}

.announce {
    color: #fff;
    margin: auto;
    text-transform: capitalize;
}
/* DELETE IF NOT WORKING */
.announcement {
 height: 50px;	
 overflow: hidden;
 position: relative;
 background: rgba(0, 255, 0, 0.56);
 color: #ff0000;
}
.announce {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 -moz-transform:translateX(100%);
 -webkit-transform:translateX(100%);	
 transform:translateX(100%);
 /* Apply animation to this element */	
 -moz-animation: scroll-left 15s linear infinite;
 -webkit-animation: scroll-left 15s linear infinite;
 animation: scroll-left 15s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
 0%   { -moz-transform: translateX(100%); }
 100% { -moz-transform: translateX(-100%); }
}
@-webkit-keyframes scroll-left {
 0%   { -webkit-transform: translateX(100%); }
 100% { -webkit-transform: translateX(-100%); }
}
@keyframes scroll-left {
 0%   { 
 -moz-transform: translateX(100%); /* Browser bug fix */
 -webkit-transform: translateX(100%); /* Browser bug fix */
 transform: translateX(100%); 		
 }
 100% { 
 -moz-transform: translateX(-100%); /* Browser bug fix */
 -webkit-transform: translateX(-100%); /* Browser bug fix */
 transform: translateX(-100%); 
 }
}

/* ------------------------------------------------ */
                /* Headings */
/* ------------------------------------------------ */

h1,
h2,
h3,
h5 {
    font-weight: 300;
    text-transform: uppercase;
}

h1 span {
/*    color: #ff0000;*/
    font-weight: 900;
    animation: animate 2s linear infinite;
}

h1 span:nth-child(1) {
    animation-delay: 0s;
}

h1 span:nth-child(2) {
    animation-delay: 0.25s;
}
h1 span:nth-child(3) {
    animation-delay: 0.5s;
}
h1 span:nth-child(4) {
    animation-delay: 0.75s;
}

@keyframes animate {
    0%,100% {
        color: #ff0000;
        filter: blur(2px);
        text-shadow: 0 0 10px #ff0000,
                     0 0 20px #ff0000,
                     0 0 80px #ff0000,
                     0 0 120px #ff0000;
    }
    5%,95% {
        color: #fff;
        filter: blur(0px);
        text-shadow: 0 0 10px none;
    }
}

h1 {
    margin-top: 0;
    margin-bottom: 20;
    color: #fff;
    font-size: 300%;
    word-spacing: 4px;
    letter-spacing: 1px;
}

h1:hover{
    color: #00c4ff;
    transition: color 1s;
    cursor: context-menu;
    
}


h2 {
    font-size: 180%;
    word-spacing: 4px;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

h2:after {
    display: block;
    height: 2px;
    width: 130px;
    margin: 15px auto;
    background-color: #555;
    content: " ";
}

 h3 {
    text-align: center;
}

h3:after {
    display: block;
    height: 2px;
    width: 30px;
    margin: 15px auto;
    background-color: #555;
    content: " ";
}


/* ------------------------------------------------ */
                /* Main-nav */
/* ------------------------------------------------ */


.main-nav {
    float: right;
    list-style: none;
    margin-top: 10px;
    z-index: 50;
}

.main-nav li {
  display: inline-block;
  margin: 10px;
  padding: 10px;
}

.main-nav li a:link,
.main-nav li a:visited {
    padding: 10px 0;
    color: #fff; 
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.main-nav li a:hover,
.main-nav li a:active {
    border-bottom: 2px solid #00c4ff;
    transition: 0.5s, color 0.5s;
    color: #00c4ff;
    font-size: 25px;
    letter-spacing: 1.5px;
}

/* ------------------------------------------------ */
                /* Mobile Nav*/
/* ------------------------------------------------ */

.mobile-nav-icon {
    float: right;
    margin-top: 15px;
    cursor: pointer;
    display: none;
}

.mobile-nav-icon i {
    font-size: 200%;
    color: #fff;
}

/* ------------------------------------------------ */
                /* Buttons*/
/* ------------------------------------------------ */

.btn:link,
.btn:visited,
input[type=submit]{
    display: inline-block;
    padding: 10px 30px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
   /* border-radius: 5px 20px 5px; */
    transition: background-color 0.5s, border 0.5s, color 0.5s;
}


.btn-full:link,
.btn-full:visited,
input[type=submit]{
   background-color: #00c4ff; 
   border: 1px solid #00c4ff;  
   color: #fff;
   margin-right: 15px;
}

.btn-full-welcome:link,
.btn-full-welcome:visited {
   background-color: #00c4ff; 
   border: 1px solid #00c4ff;  
   color: #fff;
   margin-right: 15px;
}

.btn-ghost:link,
.btn-ghost:visited {
    color: #0000cb;
    border: 1px solid #4caf50;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #4040fd;
    cursor: pointer;
    border-radius: 5px 5px 5px;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
}

.btn-full:hover,
.btn-full:active,
input[type=submit]{
   border: 1px solid #00d4fa;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
}

.btn-ghost:hover,
.btn-ghost:active {
    border: 1px solid #4040fd;
    color: #fff;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
}

input[type=submit] {
    font-family: 'Poiret One', cursive, 'Arial';
}

.btn-cite-link:link,
.btn-cite-link:visited {
    border: 1px solid #00d4fa;
    color: #fff;
    display: inline-block;
    padding: 10px 30px;
    margin: 10px 10px;
    font-weight: 300;
    text-decoration: none;
   /* border-radius: 5px 20px 5px; */
    border-radius: 50px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.btn-cite-link:hover,
.btn-cite-link:active {
    background-color: #4040fd;
    color: #fff;
    border-radius: 5px 5px 5px;
    transition: background-color 0.5s, border 0.5s, color 0.5s;
}

.button {
    border:  3px solid #00d4fa;
    border-radius: 50px;
    color: #0000cb;
    background-color: #fff;
    padding: 15px 35px;
    margin: 20px 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.button:hover {
    border-radius: 5px 5px 5px 5px;
    border-color: #fcad26;
    color: #fcad26;
}


.plan-price ul li:hover {
    color: #fcad26;
}

.button-cart:hover,
.button-cart:link,
.button-cart:active {
    color: #fcad26;
}

.btn-ghost-promo:link,
.btn-ghost-promo:visited {
}
.btn-ghost-promo:hover,
.btn-ghost-promo:active {
}

.welcome-tab {
    display: inline-block;
    padding: 10px; 30px;
    color: var(--primary-color);
    margin-top: 25px;
}

.welcome-tab:hover {
    color: #fff;
}


/* ------------------------------------------------ */
                /* Sticky-nav */
/* ------------------------------------------------ */


.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 2px #c6c4c4;
    z-index: 9999;
}

.sticky .main-nav li a:link,
.sticky .main-nav li a:visited {
    color: #555; 
    padding: 10px 0;  
}

.sticky .main-nav li a:hover,
.sticky .main-nav li a:active {
    border-color: #555;
    transition: border-bottom 1s, color 0.5s;
    padding: 10px 0;  
    transition: 0.5s, color 0.5s;
}

.sticky .main-nav li {
    margin-top: 6px;
    padding: 5px;
}

.sticky .logo-black {
    display: block;
    margin-left: -170px;
}

.sticky .logo {
    display: none;
}
/* ------------------------------------------------ */
                /* Paragraphs*/
/* ------------------------------------------------ */

.long-copy {
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    letter-spacing: 0.5px;
}

section-who {
    padding-top: 30px;
    margin-top: 15px;
}

.section-who .long-copy {
    padding-top: 20px;
    margin-bottom: 30px;
}

.long-copy-img img {
    height: 75px;
    width: auto;
    margin: 10px 10px;
    display: inline;
}


.long-copy-subject {
    float: right;
    font-size: 18px;
    font-style: italic;
}


/* ------------------------------------------------ */
                /* background*/
/* ------------------------------------------------ */

.section-background {
    background-color: #d9d7d7;
}


/* ------------------------------------------------ */
                /* what we do*/
/* ------------------------------------------------ */

.what-we-do {
    padding-top: 30px;
    background-color: #f4f4f4;
}

.show-case {
    list-style: none;
    width: 100%;
}

.show-case li {
    display: block;
    float: left;
    width: 25%;
}

.do-photo {
    width: 100%;
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

.do-photo img {
    opacity: 0.5;
    width: 100%;
    height: auto;
   transform: scale(1.15);
   transition: transform 1s;
}

.do-photo li {
    display: block;
    float: left;
    width: 100%;
}

.do-photo img:hover {
    transform: scale(1.03);
    opacity: 1;
}

.repair {
    margin-top: 25px;
    padding-bottom: 25px;
}

/* ------------------------------------------------ */
                /* Testimonials*/
/* ------------------------------------------------ */

.section-testimonials {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/back-customers.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    padding-top: 50px;
}

blockquote {
    padding: 2%;
    font-style: italic;
    line-height: 145%;
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

blockquote:hover {
    transform: translateY(-10px);
    transition: 0.5s;
}

blockquote:before {
    content: "\201C";
    font-size: 500%;
    display: block;
    position: absolute;
    top: -5px;
    left: -5px;
}

cite {
    font-size: 90%;
    margin-top: 15px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}


cite img {
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    margin-top: 35px;
}



/* ------------------------------------------------ */
                /* Testimonials - NEW */
/* ------------------------------------------------ */

.testimonial {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/back-customers.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    padding-top: 50px;
}

.testimonial .col-3 {
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.5s;
    background-color: #fff;
}

.testimonial .col-3 img {
    width: 65px;
    margin-top: 20px;
    border-radius: 50%;
}

.testimonial .col-3:hover {
    transform: translateY(-10px);
}

.fa-quote-left {
    font-size: 34px;
    color: var(--primary-color);
}

.col-3 p {
    font-size: 19px;
    margin: 12px 0;
    color: #000;
}

.testimonial .col-3 h3 {
    font-weight: 600;
    color: #555;
    font-size: 18px;
}

.col-3 {
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom: 30px;
}

.col-3 img {
    width: 100%;
}

.small-container {
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

.testimonial-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
}


.ratings .fa {
    color: var(--primary-color);
}






















/* ------------------------------------------------ */
                /* Sign-Up*/
/* ------------------------------------------------ */

.section-plans {
    background-color: #f4f4f4;
    padding: 20px;
    padding-bottom: 20px;
}

.plan-box {
    background-color: #fff;
    border-radius: 25px;
    width: 100%;
    margin-left: 5%;
    margin: 10px 10px;
    
    box-sizing: border-box;
    padding: 0 auto;
}

.plan-box:hover {
    box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.6);
  /*  transform: rotate(4deg); 
    transition: transform 1s; */
}

.plan-box div {
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
}

.plan-box div:first-child {
    background-color: #e3e3e3;
    border-top-left-radius: 10px;
    border-top-right-radius: 15px;
}


.plan-box div:last-child {
    text-align: center;
    border: 0;
}

.plan-price {
    font-size: 145%;
    margin-bottom: 10px;
    font-weight: 300;
    margin-top: 10px;
}

.plan-price {
    font-size: 80%;
}

.plan-price span {
    font-size: 50%;
    font-weight: 300;
}

.plan-box ul {
    list-style: none;
}

.plan-box ul li {
    padding: 10 0;
    font-size: 23px;
}

/* ------------------------------------------------ */
                /*Icons*/
/* ------------------------------------------------ */

.icon-small {
    display: inline-block;
    width: 30px;
    text-align: center;
    color: #0000cb;
    font-size: 120%;
    line-height: 120%;
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 10px;
}

 
/* ------------------------------------------------ */
                /*Contact Form*/
/* ------------------------------------------------ */

.section-form {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/contactus.jpg);
    background-size: cover;
    color: #fff;
    background-attachment: fixed;
    padding-bottom: 25px;
    padding-top: 25px;
}

.contact-form {
    width: 100%;
    margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=mobile],
select,
find-us {
    width: 150%;
    padding: 7px;
    border-radius: 3px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-family: 'Poiret One', cursive, 'Arial';
    background: none;
    color: #fff;
}


input[type=text]:hover,
input[type=email]:hover,
input[type=mobile]:hover,
textare,
find-us:hover {
    border-color: #4040fd;
}

textarea {
    height: 200px;
    width: 385px;
    font-family: 'Poiret One', cursive, 'Arial';
    background-color: rgba(248, 248, 248, 0.67);
    background: transparent;
    color: #fff;
}

textarea:hover {
    border-color: #4040fd;
}

input type[checkbox] {
    margin: 10px 5px 10px 0;
}

option {
    font-family: 'Poiret One', cursive, 'Arial';
    width: 225px;
}

.find-us {
    font-family: 'Poiret One', cursive, 'Arial';
}

.news {
    padding: 10px 0;
    margin-top: 10px;
    margin-bottom: -10px;
}


/* ------------------------------------------------ */
                /*checkbox*/
/* ------------------------------------------------ */

/* The container */
.container {
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 25px;
    user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
    background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}


*:focus {outline: none;}

input[type=radio]{
    margin: 10px 10px;
    
}

.radio-form {
    padding-top: 15px;
    margin-left: 375px;
}
/* ------------------------------------------------ */
                /*Footer*/
/* ------------------------------------------------ */

footer {
    background-color: #333;
    padding: 50px;
    font-size: 80%
}

footer p {
    text-align: center;
    margin-top: 20px;
    color: #888;
}

.footer-nav {
    list-style: none;
    float: left;
}

.social-links {
    list-style: none;
    float: right;
}

.footer-nav li,
.social-links li {
    display: inline-block;
    margin-right: 10px;
}

.footer-nav li:last-child,
.social-links li:last-child {
    margin-right: 0;
}

.footer-nav li a:link,
.footer-nav li a:visited,
.social-links li a:link,
.social-links li a:visited {
    text-decoration: none;
    border: 0;
    color: #888;
    transition: color 0.2s;
}

.footer-nav li a:hover,
.footer-nav li a:active {
    color: #ddd;
    
}

.social-links li a:link,
.social-links li a:visited {
    font-size: 160%;
}

.ion-social-facebook,
.ion-social-twitter,
.ion-social-googleplus,
.ion-social-instagram {
    transition: color 0.2s;
}

.ion-logo-facebook:hover {
    color: #3b5998;
}
.ion-logo-twitter:hover {
    color: #00aced;
}
.ion-logo-googleplus:hover {
    color: #dd4b39;
}
.ion-logo-instagram:hover {
    color: #517fa4;
}
.ion-logo-linkedin:hover {
    color: #007bb6;
}
.ion-logo-youtube:hover {
    color: #bb0000;
}

 hr {
    border: none;
    background: var(--primary-color);
    height: 2px;
    margin: 20px 0;
}

/* ------------------------------------------------ */
                /*Animations*/
/* ------------------------------------------------ */

.js--wp-1,
.js--wp-2, 
.js--wp-3,
.js--wp-4 {
    opacity: 0;
    animation-duration: 1s;
}
    
.js--wp-1.animated,
.js--wp-2.animated,
.js--wp-3.animated,
.js--wp-4.animated {
    opacity: 1;
    animation-duration:  1s;
}

/* ------------------------------------------------ */
                /*PHP*/
/* ------------------------------------------------ */


.form-messages {
    width: 70%;
    margin: 0 auto;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.sucess {
    background-color: rgba(45, 208, 45, 0.7);
}

.error {
    background-color: rgba(255, 0, 0, 0.7);
    color: #fff;
} 

/* ------------------------------------------------ */
/* ------------------------------------------------ */
                /* Gallery */
/* ------------------------------------------------ */

.inner {
    width: 75%;
    background-color: rgba(51, 51, 51, 0.71);
    padding: 15px;
    margin-top: 15px;
    border-radius: 15px 15px 18px 18px;
    margin: 0 auto;
}

.outer {
    background-image: url(img/promotions.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 70px;
    height: 100vh;
}

.gallery {
    margin-top: 65px;
}

.gallery a {
    border-bottom: none;
}

.gallery img {
    width: auto;
    height: 250px;
    overflow: hidden;
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    transition: 1s;
}

.gallery img:hover {
    filter: grayscale(100%);
    transform: scale(1.1);
}

/* ------------------------------------------------ */
                /* Logos */
/* ------------------------------------------------ */


.logo {
    height: 100px;
    width: auto;
    float: left;
    margin-top: 20px;
}

.logo-black {
    display: none;
    height: 100px;
    width: auto;
    float: left;
    margin: 5px 0;
}

.logocert {
    width: 125px;
    height: auto;
    margin: 15px;
}

.logocert-small {
    width: 95px;
    height: auto;
    margin: 15px;
}


.certcenter {
    text-align: center;
    margin-bottom: 15px;
}


/* ------------------------------------------------ */
                /* promo */
/* ------------------------------------------------ */



.promo img {
    margin-top: 50px;
    width: 250px;
    height: 250px;
}


.promo-nav {
    float: right;
    list-style: none;
    margin: 10px;
    padding: 10px;
}

.promo-nav li {
  display: inline-block;
  margin: 10px;
  padding: 10px;
} 

.promo-nav li a:link,
.promo-nav li a:visited {
    padding: 10px 0;
    color: #000000; 
    text-decoration: none;
    text-transform: uppercase;
    font-size: 90%;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s;
}

.promo-nav li a:hover,
.promo-nav li a:active {
    border: 2px solid #ff6c00;
    margin: 10px;
    padding: 10px;
}



/* ------------------------------------------------ */
                /* promo-text */
/* ------------------------------------------------ */


.promo-text {
    color: #ffffff;
    text-align: center;
    line-height: 145%;
    width: 70%;
    margin-left: 15%;
    letter-spacing: 0.5px;
    padding-top: 20px;
    margin-bottom: 30px;
}

/* ------------------------------------------------ */
                /* Store - Image Sales */
/* ------------------------------------------------ */


.productimage img {
    width: 200px;
    height: auto;
    text-align: center;
}


/* ------------------------------------------------ */
                /* support section */
/* ------------------------------------------------ */



.support {
    background-color: #f4f4f4;
    padding: 15px;
}


/* ------------------------------------------------ */
                /* Services */
/* ------------------------------------------------ */


.section-services {
    background-color: #ffffff;
    
}

/* ------------------------------------------------ */
                /* Online Store */
/* ------------------------------------------------ */


.store-img {
    height: 250px;
    width: auto;
}

.store-outer {
    background-color: #555;
    background-image: url(img/shopping.jpg);
}


/* ------------------------------------------------ */
                /* managed */
/* ------------------------------------------------ */

/*.managed {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/itservices.jpg);
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 25px;
    padding-top: 25px;
}
*/

.managed {
    background: #f4f4f4;
}




/* ------------------------------------------------ */
                /* Video */
/* ------------------------------------------------ */


h1{
    font-weight: 300;
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    pointer-events: none;
}

h3 {
    pointer-events: none;
}

.showcase {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var (--primary-color);
}

.video-container video {
    min-height: 100%;
    min-width: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-container:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.content {
    z-index: 10;
}






































