* {
    margin: 0;
    padding: 0;

}

html {

    font-size: 16px;
}
@font-face {
    font-family: 'itc_avant_garde_gothicbold';
    src: url('fonts/itc_avant_garde_gothic_bold-webfont.woff2') format('woff2'),
         url('fonts/itc_avant_garde_gothic_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'itc_avant';
    src: url('fonts/ITCAvantGardeStd-BkCn.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Animation for nav title */
span {
    display: inline;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: color 1.5s ease
}

span:focus,
span:hover {
    outline: 0;
    color: #E9204F;
    -webkit-transition: color 1.5s ease;
    -moz-transition: color 1.5s ease;
    -ms-transition: color 1.5s ease;
    -o-transition: color 1.5s ease;
    transition: color 1.5s ease;
    cursor: pointer
}

span:after,
span:before {
    -webkit-transition: all 1.5s ease 0s;
    -moz-transition: all 1.5s ease 0s;
    -ms-transition: all 1.5s ease 0s;
    -o-transition: all 1.5s ease 0s;
    transition: all 1.5s ease 0s
}

span:focus:after,
span:focus:before,
span:hover:after,
span:hover:before {
    outline: 0;
    background-color: #E9204F;
    -webkit-transition: all 1.5s ease 0s;
    -moz-transition: all 1.5s ease 0s;
    -ms-transition: all 1.5s ease 0s;
    -o-transition: all 1.5s ease 0s;
    transition: all 1.5s ease 0s
}
.move-horizontal:after,
.move-horizontal:focus:after,
.move-horizontal:focus:before,
.move-horizontal:hover:after,
.move-horizontal:hover:before {
    height: 100%;
    width: 0.1875rem;
}


.move-horizontal:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 50%
}

.move-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    width: .1875rem;
    height: 100%;
    top: 0;
    left: 50%
}

.move-horizontal:hover:after {
    right: 0
}

.move-horizontal:hover:before {
    left: 0
}

/* Animations for slide ins */
.scroll-container:nth-of-type(1) {
    background-color: white;
    }
    
    .scroll-container:nth-of-type(2) {
    background-color: white;
    }
    
    .scroll-container:nth-of-type(3) {
    background-color: white;
    }
    
    .scroll-container:nth-of-type(even) {
    flex-direction: row-reverse;
    }
    
    .scroll-element {
    min-height: 300px;
    height: 600px;
    background-color: white;
    width: 100%;
    
    
    }
    
    @media screen and (max-width: 650px) {
    .scroll-container,
    .scroll-container:nth-of-type(even) {
    flex-direction: column;
    align-content: inherit;
    }

    
    }
    
    .js-scroll {
    opacity: 0;
    transition: opacity 500ms, background-color 2000ms ease-out;
    }
    
    .js-scroll.scrolled {
    opacity: 1;
    }
    
    .scrolled.fade-in-bottom {
    animation: fade-in-bottom 1s ease-in-out both;
    }
    
    
    @keyframes fade-in-bottom {
    0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    }
    100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    }
    }

.scrolled.fade-in {
    animation: fade-in 1s ease-in-out both;
    }
    .scrolled.slide-left {
       animation: slide-in-left 1s ease-in-out both;
    }
       @keyframes slide-in-left {
       0% {
           -webkit-transform: translateX(-100px);
           transform: translateX(-100px);
           opacity: 0;
       }
       100% {
           -webkit-transform: translateX(0);
           transform: translateX(0);
           opacity: 1;
       }
       }
       @keyframes fade-in {
       0% {
           opacity: 0;
       }
       100% {
           opacity: 1;
       }
       }
/* End */ 
header {
    width: 100%;
    background-color: rgba(27, 27, 27, 0.8);
    position: absolute;
    z-index: 500;
    

}

nav {
    
    float:right;
    
    
}




nav a::before {
    content: '';
    display: block;
    width: 0%;
    height: 0.125rem;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all ease-in-out 250ms;
    border-radius: .3125rem;
    padding-top: 0rem;
    
    
}
nav a:hover::before {
    width: 100%;
    background-color: #E9204F;
    

}

nav li {
    display: inline-block;
    margin-left: 4.6875rem;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 0.3125rem;
    padding-left: .0625rem;
    
    
}


nav ul {
    margin: 0;
    list-style: none;
    display: flex;
    margin: 0rem 12.5rem 0rem 0rem;
}

a {text-decoration: none; color:lightgray}

.container {
    margin-bottom: 0rem;
}
.navtitle {
    font-size: 2.75rem;
     color:white;
      padding: 3.75rem 0rem 1.2rem 6.25rem;
      display: inline-block;
     font-family:'itc_avant_garde_gothicbold';
}


#nav-toggle {
    display: none;
}

.xno {
     display: none;
    color: white;
}

.title {
    color:white; 
    position:absolute; 
    font-size: 1.7rem; 
    font-family:'itc_avant_garde_gothicbold';
    margin: 9rem 0rem 0rem 6.25rem;
    text-align: left;
}

.title:after {

    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.55rem; /* This will center the border. */
    width: 50%; /* Change this to whatever width you want. */
    padding-top: 2rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid #E9204F; /* This creates the border. Replace black with whatever color you want. */
}


.card {
    color:white;
    font-size: 1.2rem;
    padding: 2rem 0rem 0rem 1.5rem;
    font-family:'itc_avant_garde_gothicbold';
    width: 17.1rem;
    height: 20rem;
    background-color: rgba(46, 45, 45, 0.8);
    text-align: left;
    transition: all ease-in-out 1000ms;
    margin-right: 7rem;
}

.cardone {
    color:white;
    font-size: 1.1rem;
    padding: 2rem 0rem 0rem 1.5rem;
    font-family:'itc_avant_garde_gothicbold';
    width: 17.1rem;
    height: 20rem;
    background-color: #E9204F;
    text-align: left;
    transition: all ease-in-out 1000ms;
    margin-right: 7rem;
   
}

.cardone:after {

    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.20rem; /* This will center the border. */
    width: 15%; /* Change this to whatever width you want. */
    padding-top: 1rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid white; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.cardtitle {
    font-size: 0.7rem;
    display: inline-block;


}

.card:hover {
    background-color: #E9204F;
    
    
    
}





.card:after {

    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.20rem; /* This will center the border. */
    width: 15%; /* Change this to whatever width you want. */
    padding-top: 1rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid #E9204F; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.card:hover:after {
    transition: all ease-in-out 1000ms;
    border-bottom: 0.2rem solid white;
}




.introcontent {
    margin: 25rem 0rem 0rem 6.25rem;
    display: flex;
    justify-content: space-between;
    position: absolute;
    
}

.cardfirst {

    background-color: #E9204F;
    box-shadow:0.3rem 0.3rem 0.3rem 0.3rem rgba(255,255,255, 0.6);
}

.carddescone {
    font-size: 1rem;
    font-family: 'itc_avant';
    padding-top: 3rem;
    margin-bottom: -17.7rem;
    text-align: left;
    margin-left: -0.2rem;
    line-height: 1.7;
}

.carddesctwo {
    font-size: 1rem;
    font-family: 'itc_avant';
    padding-top: 3rem;
    margin-bottom: -4.2rem;
    line-height: 1.7;
    margin-left: -0.2rem;
    
}

.carddescthree {
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'itc_avant';
    padding-top: 3rem;
    margin-bottom: -14.7rem;
}
.introfirst:after {

    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.20rem; /* This will center the border. */
    width: 15%; /* Change this to whatever width you want. */
    padding-top: 1rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid white; /* This creates the border. Replace black with whatever color you want. */
}

.backgroundimgall {

    background-color: #E9204F;
    width: 100%;
    height: 100%;
    position: static;
    margin: 0 auto;
}

.classtest {
    width: 100%;
    margin: 0 auto;
    height: 47rem;
    
}

.servicebackground {
    background-color: white;
    width: 100%;
    height: 30rem;
    position: relative;
    
}

.backgroundimg {
    background-image:
    url(https://user-images.githubusercontent.com/82626961/125760856-b1c9d05d-a702-440c-a8cf-8fb60243e9d4.jpeg);
    width: 100%;
    height: 100%;
    z-index: 100;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
}
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.sectionbackgroundimg {
    padding-top: 2rem;
    background: linear-gradient(-45deg,#200122,#434343, #93291E, #ED213A, #6f0000, #434343, #000000);
    background-size: 400% 400%;
    animation: gradient 10s ease forwards;
    width: 100%;
    height: 53rem;
    z-index: 100;
    margin: 0 auto;

}

.reviewbackgroundimg {
    padding-top: 2rem;
    background: #E9204F;
    background-size: 400% 400%;
    animation: gradient 10s ease forwards;
    width: 100%;
    height: 53rem;
    z-index: 100;
    margin: 0 auto;

}
.reviewimage {
    width:150%; height: 30rem; border: 1px solid transparent; border-radius: 1rem; background: linear-gradient(-45deg,#000000, #6f0000, #ED213A, #93291E, #434343, #200122); margin-left: -10rem;box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.no-cpu {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
}

#inquirebtn {
    padding: 0.7rem 0.5rem 0.5rem 0.5rem;
    font-family: 'itc_avant';
    font-size: 0.8rem;
    background:rgba(46, 45, 45, 0.8);
    border: 0.1rem solid #E9204F;
    color: white;
    cursor: pointer;
    background-position: 1% 50%;
    background-size: 300% 300%;
    transition: all 0.7s ease;

    
}

#inquirebtn:hover {
          background: black;
          border-color: transparent;
          color:white;
    
    
}


.divbutton {
    margin-bottom: -16rem; 
    padding: 5rem 0rem 0rem 9rem;
}

.smalliconpadding {
    background-color:rgba(0, 0, 0, 0.8);
    display: inline-block;
    margin: -0.5rem 0rem 0rem 6rem;
    position: absolute;
    border-radius: 3rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    
}

.smalliconpaddingtwo {
    background-color:rgba(0, 0, 0, 0.8);
    display: inline-block;
    margin: -0.5rem 0rem 0rem 1rem;
    position: absolute;
    border-radius: 3rem;
     padding: 0.5rem 0.5rem 0.3rem 0.5rem;

}

.smalliconpaddingthree {
    background-color:rgba(0, 0, 0, 0.8);
    display: inline-block;
    margin: -0.5rem 0rem 0rem 1rem;
    position: absolute;
    border-radius: 3rem;
    margin-left:1rem; padding: 0.5rem 0.3rem 0.3rem 0.5rem;

}

.iconheight {
    height: auto; width: 42px;
}

.iconheightone {

    height: auto; width: 48px;
}

.mobileoverlay {
    background: linear-gradient(-45deg, #E9204F, #ED213A, #6f0000 );
    width: 100%; height: 29rem;
    position: static;
}

/* Type writer animation */

.myanimation {
    position: absolute;
    width: max-content;
    font-family: 'itc_avant_garde_gothicbold';
}

.myanimation::before, .myanimation::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.myanimation::before {
    background-color: white;
    animation: typewriter 6s steps(35) 1s forwards;
}


.myanimation::after {
    
    width: 0.125rem;
    height: 1.5rem;
    background-color: black;
    animation:typewriter 6s steps(35) 1s forwards,
    blink 750ms steps(35) infinite;

}

.servicequote {
    margin: 3rem 0rem 0rem 37.5%;
    text-align: center;
    
}





.serviceoverlay {
    
    display:flex;
    margin-left: 2.5%;
    width: 95%;
    height: 51rem;
    position: static;
    background-color: white;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
@keyframes typewriter {
    to {left: 100%;}

}
@keyframes blink {
    to {background-color: transparent;}
}
.servicetitle {
    margin: 8rem 0rem 0rem 6rem;
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 2.2rem;
    display: block;
    white-space: nowrap;
}

.textdil {
    position:absolute;margin-top:-1.5rem; font-size:0.7rem; font-family: 'itc_avant';
}
.textdiltwo {
    position:absolute;margin:-3.5rem 0rem 0rem 28.5rem;font-size: 1.2rem; font-family: 'itc_avant_garde_gothicbold';
    font-style: italic;
}

.picdil {
    position: absolute; margin:-2.5rem 0rem 0rem 35rem; width: 2rem; height: 2rem;
}

.serviceright {

    border-right: 0.2rem solid #E9204F;
    height: 15rem;
    width: 46.8%;
}

.servicetitle:after {

    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.20rem; /* This will center the border. */
    width: 100%; /* Change this to whatever width you want. */
    padding-top: 1rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid #E9204F; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.imageresize {
    width: 25rem;
    height: 15rem;
    position: absolute;
    display: inline-block;
    margin: 8rem 0rem 0rem 60%;
    
}

.sectioncontent {
    
        margin: 27rem 0rem 0rem 6.25rem;
        display: flex;
        justify-content: space-between;
        position: absolute;
        
}

.sectioncard {
    color:white;
    font-size: 1.2rem;
    padding: 2rem 0rem 0rem 1.5rem;
    width: 17.1rem;
    font-family:'itc_avant_garde_gothicbold';
    height: 20rem;
    background-color:white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    text-align: left;
    margin-right: 7rem;
    
    
    
}


.servicetitledesc {
    margin: 13rem 0rem 0rem 6.5rem;
    
    width: 40%;
    font-family: 'itc_avant';
    font-size: 1rem;
    display: block;
    position: absolute;
    line-height: 1.7;
    
}

.sectiontitle,.sectionprice,.sectionpricetwo,.sectionpricethree {
    
    color: black;
   display: inline-block;
}

.sectionprice { 
    margin-left: 4rem;
    padding: 0.1rem 0.1rem 0.1rem 0.1rem;
    border: 0.2rem solid #E9204F;
}

.sectionpricetwo {
    margin-left: 5.5rem;
    padding: 0.1rem 0.1rem 0.1rem 0.1rem;
    border: 0.2rem solid #E9204F;
}

.bestseller {
    margin-left: 5.5rem;
    color: transparent;
    display: inline-block;
    position:absolute;
}

.sectionpricethree {
    margin-left: 3rem;
    padding: 0.1rem 0.1rem 0.1rem 0.1rem;
    border: 0.2rem solid #E9204F;
}

.sectiondesc {
    color:black;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px 0px inset;
    width: 90%;
    height: 13.5rem;
    margin-top: 0.5rem;
    overflow:hidden;
    overflow-y: scroll;
}

.sectionpad {
    padding: 0.7rem 1rem 0rem 1rem;
    list-style: none;
}

.sectionpadrest {
    padding:0.5rem 1rem 0rem 1rem;
    list-style: none;
}

html::-webkit-scrollbar {
    width: 0.5rem;
}

html::-webkit-scrollbar-track {
    background:rgba(61, 61, 61, 0.8);
}

html::-webkit-scrollbar-thumb {
    background-color: #E9204F;
    border-radius: 0.5rem;
    height: 0.5rem;
    
}

.sectiondesc::-webkit-scrollbar {
    width: 0.5rem;
    
}

.sectiondesc::-webkit-scrollbar-track {
    background:white;
    
}

.sectiondesc::-webkit-scrollbar-thumb {
    background-color: #E9204F;
    border-radius: 1rem;
    height: 0.5rem;
    
}

.imagelistpadding {
    display: inline-block;

}

.liststyle {
    display: inline-block;
    padding-left: 0.5rem;
    font-size: 1.1rem;
    font-family: 'itc_avant';
}

.pricebutton {
    position: absolute;
    margin: 16.3rem 0rem 0rem 2.0rem;
    padding:1rem 2rem 1rem 2rem;
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 1rem;
    background-image: linear-gradient(-45deg,#E9204F, #ED213A, #93291E);
    border: 0.1rem solid #E9204F;
    color: white;
    cursor: pointer;
    background-position: 1% 50%;
    background-size: 300% 300%;
    transition: all 0.7s ease;
}
.submitbutton {
    position: absolute;
    margin: 5rem 0rem 0rem 45vw;
    padding:1rem 2rem 1rem 2rem;
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 1rem;
    background-image: linear-gradient(-45deg,#E9204F, #ED213A, #93291E);
    border: 0.1rem solid #E9204F;
    color: white;
    cursor: pointer;
    background-position: 1% 50%;
    background-size: 300% 300%;
    transition: all 0.7s ease;
}

.submitbutton:hover {
    background-position: 99% 50%;
      border-color: transparent;
      color:black;
}
.pricebutton:hover {
    background-position: 99% 50%;
      border-color: transparent;
      color:black;
}



.pricebuttonone {
    position: absolute;
    margin: 16.3rem 0rem 0rem 0.6rem;
    padding:1rem 2rem 1rem 2rem;
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 1rem;
    background-image: linear-gradient(-45deg,#E9204F, #ED213A, #93291E);
    border: 0.1rem solid #E9204F;
    color: white;
    cursor: pointer;
    background-position: 1% 50%;
    background-size: 300% 300%;
    transition: all 0.7s ease;

}
.pricebuttonone:hover {
    background-position: 99% 50%;
      border-color: transparent;
      color:black;
}


.pricebuttontwo {
    position: absolute;
    margin: 16.3rem 0rem 0rem -2.3rem;
    padding:1rem 2rem 1rem 2rem;
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 1rem;
    background-image: linear-gradient(-45deg,#E9204F, #ED213A, #93291E);
    border: 0.1rem solid #E9204F;
    color: white;
    cursor: pointer;
    background-position: 1% 50%;
    background-size: 300% 300%;
    transition: all 0.7s ease;
}
   
  .pricebuttontwo:hover {
      background-position: 99% 50%;
      border-color: transparent;
      color:black;
  }
.top {
    width: 100%;
    height: 2rem;
    background:white;
    position: fixed;
    z-index: 999;
}

.toptext {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 0.6rem;
    padding: 0.7rem 0rem 0rem 89.5%;
    display:inline-block;
    position: absolute;

}

.toptextcontact {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 0.6rem;
    padding: 0.7rem 0rem 0rem 69.5%;
    display:inline-block;
    position: absolute;
}

.env {
    display:inline-block;
    padding: 0.5rem 0rem 0rem 87%;
    position: absolute;
}

.pho {
    display:inline-block;
    padding: 0.5rem 0rem 0rem 77%;
    position: absolute;
}

.toptexttwo {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 0.6rem;
    padding: 0.7rem 0rem 0rem 79.5%;
    display:inline-block;
    position: absolute;
}

.toptextthree {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 0.6rem;
    padding: 0.7rem 0rem 0rem 8%;
    display:inline-block;
    position: absolute;
}

.wordpress {
    color: white;
    position: absolute;
    margin-left: 86.5vw;
    margin-top: 1rem;
}

.shopify {
    color: white;
    position: absolute;
    margin-left: 8vw;
    margin-top: 1rem;
}

.opencart {
    color: white;
    position: absolute;
    margin-left: 86.5vw;
    margin-top: 12rem;
}

.magneto {
    color: white;
    position: absolute;
    margin-top: 12rem;
    margin-left: 8vw;
}

.joomla {
    color: white;
    position: absolute;
    margin-left: 86.5vw;
    margin-top: 24rem;
}

.php {
    color: white;
    position: absolute;
    margin-left: 7vw;
    margin-top: 24rem;
}
/* Slideshow container */
.slideshow-container {
    max-width: 40rem;
    position: relative;
    margin: auto;
    margin-top: 0rem;
    
  }
  
  /* Hide the images by default */
  .mySlides {
    margin-top: 0rem;
    
    display: none;
    
  }

  
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 80%;
    width: auto;
    margin-top: -1.375rem;
    padding: 1rem;
    color: #E9204F;
    font-weight: bold;
    font-size: 1.125rem;
    transition: 0.6s ease;
    border-radius: 0 0.188rem 0.188rem 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 0.188rem 0 0 0.188rem;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }
  
  /* Caption text */
  .text {
    color:black;
    font-size: 1.2rem;
    padding-top: 10rem;
    
    line-height: 2rem;
    position: absolute;
    bottom: 8rem;
    width: 100%;
    font-family: 'itc_avant_garde_gothicbold';
    text-align: center;
  }

  .textone {
    color:black;
    font-size: 1.2rem;
    padding-top: 0rem;
    padding-left: -3rem;
    line-height: 2rem;
    position: absolute;
    bottom: 16rem;
    width: 100%;
    font-family: 'itc_avant';
    text-align: center;
  }
  .reviewtitle {
      color: black;
      font-size: 1.5rem;
      padding-top: 2rem;
      position: absolute;
      width: 100%;
      font-family: 'itc_avant_garde_gothicbold';
      text-align: center;
      bottom: 26rem;
  }
  
  .reviewtitle:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 17rem; /* This will center the border. */
    width: 15%; /* Change this to whatever width you want. */
    padding-top: 0.5rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid #E9204F; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
  }
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  .quoteadjust {
      padding-left: 0;
      bottom: 10rem;
      right: 38.5rem;
      position:absolute;
  }

  .quoteadjustfirst {
    padding-left: 0;
      bottom: 8rem;
      right: 38.5rem;
      position:absolute;
  }

  .quoteadjustone {
     top: 8.5rem;
     left: 38rem;
      position: absolute;
  }

  .quoteadjusttwo {
    top: 6.5rem;
    left: 37rem;
     position: absolute;
  }
  
  .quoteadjustsecond {
    padding-left: 0;
    bottom: 13rem;
    right: 39rem;
    position:absolute;
  }
  
  .quoteadjustthree {
    top: 21rem;
    left: 38rem;
     position: absolute;
  }


  .reviewoverlay {
    display:flex;
    margin-left: 2.5%;
    width: 95%;
    height: 35rem;
    position: static;
    background-color: white;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  }

  .worksoverlay {
    display:flex;
    margin-left: 37%;
    width: 0%;
    height: 8rem;
    position: static;
    background-color: #434343;
    
  }

  .layoutstitle {
    margin: 2rem 0rem 0rem 39%;
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 2.2rem;
    display: block;
    color: white;
    white-space: nowrap;
    background-color: rgba(46, 45, 45, 0.8);
    border-radius: 1rem;
    padding: 1.5rem 3rem 3rem 3rem;
  }

  .layoutstitle:after {

    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.20rem; /* This will center the border. */
    width: 100%; /* Change this to whatever width you want. */
    padding-top: 0.5rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid #E9204F; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}


.worksbackgroundimg {
    background-image:
    url(https://user-images.githubusercontent.com/82626961/126412696-67606600-e2c3-4990-ba0c-72313261354b.jpg);
    width: 100%;
    height: 100%;
    z-index: 100;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.worksbackground {
    width: 100%;
    height: 38rem;
    background: rgb(46, 45, 45);
   
    
}

#lightbox img {
    border:none;
}

.gallery { 
    margin: 1rem 7vw 0rem 10vw;
    
    
}

.gallery img {
    transition: 1s;
    padding: .938rem;
    width: 16rem;
    height: 10rem;
}
.gallery img:hover{

transform:scale(1.1);
}

.redstars {
    position: absolute;
    width: 10rem;
    height: 2rem;
    bottom: 23rem;
    left: 15rem;
}

.animationbackground {
    background: white;
    width: 100%;
    height: 14rem;
}

.animationtitle {
    color: #E9204F;
    font-size: 2.2rem;
    position: absolute;
    font-family: 'itc_avant_garde_gothicbold';
    margin:2rem  0rem 0rem 40vw;
    

}

#middle_name {
    display: none;

}

.animationtitle:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.20rem; /* This will center the border. */
    width: 100%; /* Change this to whatever width you want. */
    padding-top: 0.5rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid black; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.numbers,.numbersone,.numberstwo {
    color: #E9204F;
    font-size: 2.2rem;
    font-family: 'itc_avant_garde_gothicbold';
    padding: 7rem 0rem 0rem 20vw;
    display:inline-block;
    
}

.numbersone {
padding-left: 18vw;
}

.numberstwo {
padding-left: 17.5vw;
}

.percentage, .plus {
    color: #E9204F;
    font-size: 2.2rem;
    font-weight: bold;
    display:inline-block;
    padding-left: 0.3rem;
    
}
.animationtext,.animationtextone,.animationtexttwo {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 1.1rem;
    color: black;
    padding-left: 18.5vw;
}

.animationtext {
    padding-left:17.5vw;
}

.animationtextone,.animationtexttwo {
    padding-left: 45.5vw;
    margin-top: -1.4rem;
}

.animationtexttwo {
    padding-left: 69vw;
}
.textcounter {
    padding-top: 1rem;
}


.strategybackground {
    background: #E9204F;
    width: 100%;
    height: 30rem;
}


.strategytitle,.strategytitletext {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 2.2rem;
    margin: 3rem 0rem 0rem 6.25rem;
    position: absolute;
    color: white;

}

.strategycontent {
    margin: 10rem 0rem 0rem 6.25rem;
    display: flex;
    justify-content: space-between;
    position: absolute;
    
    
}

.strategycard {
    color:white;
    font-size: 1.2rem;
    padding: 1rem 1rem 0rem 1rem;
    font-family:'itc_avant_garde_gothicbold';
    width: 12rem;
    height: 15rem;
    background-color: white;
    text-align: left;
    transition: all ease-in-out 1000ms;
    margin-right: 6.7rem;
    border-radius: 1rem;
}
.strategyicon,.strategyiconone {
    position: absolute;
    color: #E9204F;
    padding: 0rem 0rem 0rem 3rem;
}

.strategyiconone:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: -3rem; /* This will center the border. */
    width: 75%; /* Change this to whatever width you want. */
    padding-top: 0.5rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid black; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.strategyline {
    position: absolute;
    color: transparent;
    margin-top: 18rem;
    margin-left: 8rem;
    
}

.strategyline:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.2rem; /* This will center the border. */
    width: 5200%; /* Change this to whatever width you want. */
    padding-top: 0rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid white; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.numbercard {
    position: absolute;
    font-size: 1.2rem;
    border-radius: 0.5rem;
    padding: 0.5rem 0.5rem 0.5rem 0.5rem;
    background-color: #E9204F;

}

.strategyicon:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: -3rem; /* This will center the border. */
    width: 100%; /* Change this to whatever width you want. */
    padding-top: 0.5rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid black; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.strategytitletext {
margin-top: 7rem;
font-size: 1rem;
font-family: 'itc_avant';

}

.strategytext {
    color: black;
    padding-top: 3.5rem;
    font-family: 'itc_avant';
    font-size: 1rem;
    
}

.contactbackground {
    background: white;
    width: 100%;
    height: 38rem;
    margin-top: 3rem;
}
.contacttitle {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 2.2rem;
    color: black;
    text-align: center;
    padding-top: 5rem;
}

.contacttitletext {
    font-family: 'itc_avant';
    font-size: 1.1rem;
    color:black;
    text-align: center;
    padding-top: 2rem;
}

.contacttitletext:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 10%; /* This will center the border. */
    width: 80%; /* Change this to whatever width you want. */
    padding-top: 1rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid #E9204F; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}
.discount {
    position: absolute;
    margin: 9.9rem 0rem 0rem 63.5vw;
    width: 20rem;
    height: 8rem;
    background-color:rgba(46, 45, 45, 0.8);
    border-radius: 1rem;
    
}

.discounttext {
    padding: 1.5rem 0rem 1.95rem 0rem;
    text-align: center;
    border: 0.2rem solid #E9204F;
    font-size: 1.6rem;
    color: white;
    font-family: 'itc_avant_garde_gothicbold';


}

.discountarrow {
    position: absolute;
    margin: 8rem 0rem 0rem 81.5vw;
    color: #E9204F;
    

}

.nameinput, .emailinput, .phoneinput, .budgetinput,.messageinput {
    border-radius: 1rem;
    border: 0.15rem solid lightgrey;
    height: 2rem;
    width: 40%;
    font-family: 'itc_avant';
    font-size: 0.9rem;
    padding: 0.5rem 0rem 0.5rem 0.2rem;
    margin: 0rem 2rem 0rem 0rem;
}

.textcontent,.textcontentmessage {
    margin: 1rem 0rem 0rem 16vw;
    display: flex;
    width: 80%;
    height: 4rem;
}

.messageinput {
    width: 80%;
    height: 0rem;
    padding-bottom: 6rem;
    padding-top: 1rem;
}

.textcontentmessage {
    width: 50%;
    padding-left: 29vw;
    margin-left: 0;
}



input:focus, textarea {
    outline: none !important;
}


.logo {
    padding-left: 5rem;
    width: 10%;
}

.footertext,.footertextp,.footerservices,.footerservicestext {
    font-size: 1rem;
    color: white;
    font-family: 'itc_avant';
    position: absolute;
    padding-left: 5rem;
    padding-top: 4rem;
    
}


.footerservices,.footerservicestext {
    
padding-left: 70%;
padding-top: 0;
margin-top: -5rem;
font-family: 'itc_avant_garde_gothicbold';
}

.footerservicestext {
    font-family: 'itc_avant';
    margin-top: -2rem;
    
    
}

.footerservices:after {
    content: ""; /* This is necessary for the pseudo element to work. */ 
    display: block; /* This will put the pseudo element on its own line. */
    margin-left: 0.20rem; /* This will center the border. */
    width: 95%; /* Change this to whatever width you want. */
    padding-top: 0.5rem; /* This creates some space between the element and the border. */
    border-bottom: 0.2rem solid #E9204F; /* This creates the border. Replace black with whatever color you want. */
    transition: all ease-in-out 1000ms;
}

.footertextp {
    padding-top: 6rem;
}

.thankyouback {
    background: #E9204F;
    height: 40rem;
    width: 100%;
}

.thankfirst, .thanksecond {
    font-size: 2.5rem;
    text-align: center;
    position: absolute;
    margin: 12rem 0rem 0rem 25%;
    white-space: nowrap;
    color: white;
    font-family: 'itc_avant_garde_gothicbold';
}

.thanksecond {
    margin-top: 15rem;
}


/* End */


/* Media Queries */ 



@media screen and (min-width: 2000px) {
 html {
    font-size: 16px;
 }
    .classtest {
    max-width: 2560px;
}


.animationtitle {
    margin-left: 42vw;
}

.numbersone {
    padding-left: 20vw;
}

.numberstwo {
    padding-left: 19vw;
}

header {

    max-width: 2560px;
}

.card,.cardone {

    margin-right: 10vw;
}

.sectionbackgroundimg {
    max-width: 2560px;
}

.top {
    max-width: 2560px;
   
}
.sectioncard {
    margin-right: 12vw;
}

.textdiltwo {
    margin-left: 36rem;
}

.picdil {
    margin-left: 42.5rem;

}

.strategycard {
    margin-right: 10vw;
}

.strategyline:after {

    width: 5500%;
}
}

@media screen and (min-width: 2300px) {
    .card,.cardone {
        margin-right: 17vw;
    }

    .strategyline:after {

        width: 6150%;
    }
}

@media screen and (min-width: 2560px) {
    .strategyline:after {
        display: none;
    }
}

footer {
    position: relative;
    width: 100%;
    height: 8rem;
    background: white;
    overflow:hidden;
}

footer .wave {
    position: absolute;
    bottom: 0rem;
    left: 0;
    width: 100%;
    height: 100px;
    background: url(images/wave.png);
    filter: invert(100%);
    color: #E9204F;
    background-size: 1000px 100px;
}

footer .wave.wave1 {
    animation: animate 30s linear infinite;
    z-index: 1000;
    opacity: 1;
    animation-delay: 0s;
    bottom: 0;
}

footer .wave.wave2 {
    animation: animate2 15s linear infinite;
    z-index: 999;
    opacity: 0.5;
    animation-delay: -5s;
    bottom: 10;
}

footer .wave.wave3 {
    animation: animate 30s linear infinite;
    z-index: 998;
    opacity: 0.2;
    animation-delay: -2s;
    bottom: 15;
}

footer .wave.wave4 {
    animation: animate2 5s linear infinite;
    z-index: 997;
    opacity: 0.7;
    animation-delay: -5s;
    bottom: 20;
}
@keyframes animate2 {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: -1000px;
    }
}

@keyframes animate {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1000px;
    }
}


.footerbackground {
    background-color: black;
    height: 20rem;
    width: 100%;
}

@media screen and (min-width: 1750px) {
    html {font-size: 17px;}

    .footerbackground {
        height: 25rem;
    }

}

@media screen and (min-width: 1550px) {
    .discountarrow {display: none !important;}
}


@media screen and (max-width: 1430px) {
    .strategycard {
        margin-right: 6vw;
    }

    .strategyline:after {
        display: none;
    }

    
}

@media screen and (max-width: 1392px) {
    .worksbackground {
        height: 50rem;
    }

    .gallery { 
        margin-left: 19vw;
    }
}
@media screen and (max-width: 1327px) {
    html {font-size: 15px;}
    .card {
        margin-right: 5rem;
    }

    .cardone {
        margin-right: 5rem;
    }
    
    
}

@media screen and (max-width: 1233px) {
    html {font-size: 14px;}
    .card {
        margin-right: 3rem;
    }

    .cardone {
        margin-right: 3rem;
    }
}

@media screen and (max-width: 1278px) {
    .sectioncard {
        margin-right: 5rem;
    }
    
}

@media screen and (max-width: 1150px) {
    .strategycard {margin-right: 3vw;}
}

@media screen and (max-width: 1110px) {
    html {font-size: 13px;}
}

@media screen and (max-width: 955px) {
    html {font-size: 12px;}

    .sectioncard {
        margin-right: 3rem;
    }

    .gallery {
        margin-left: 16vw;
    }
}
@media screen and (max-width: 1030px) {

    html {font-size: 12px;}

    .strategycard {
        margin-right: 2vw;
    }
    
    .smalliconpadding {
        margin-top: -1.2rem;

    }

    .iconheightone {
        width: 44px;
    }

    .smalliconpadding {
        margin-left: 6.2rem;
    }

    .smalliconpaddingtwo {
        
    }

}

@media screen and (max-width: 883px) {
    html {font-size: 10px;}

    .smalliconpadding {
        margin-left: 6rem;
    }
    .iconheightone {
        width: 29px;
    }

    .iconheight {
        width: 29px;
    }
    .smalliconpaddingtwo {
        margin-top: -1.3rem;
    }

    .smalliconpaddingthree {
        margin-top: -1.3rem;
    }

    .servicetitledesc {
        white-space: pre-line;
    }
}

@media screen and (max-width: 745px) {
    .toptext {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 79.5%;
        display:inline-block;
        position: absolute;
    
    }

    .discounttext {display: none;}
    .discount {display: none;}
    .discountarrow {display: none !important;}

    .servicetitledesc {
        margin-left: 4rem;
    }
    .servicetitle {
        margin-left: 4rem;
    }

    .imageresize {
        margin-left: 55%;
    }

    .sectioncontent {
        margin-left: 4rem;
    }

    
    
    .toptextcontact {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 59.5%;
        display:inline-block;
        position: absolute;
    }
    
    .env {
        display:inline-block;
        padding: 0.5rem 0rem 0rem 77.5%;
        position: absolute;
    }
    
    .pho {
        display:inline-block;
        padding: 0.5rem 0rem 0rem 67%;
        position: absolute;
    }
    
    .toptexttwo {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 69.5%;
        display:inline-block;
        position: absolute;
    }
    
    .toptextthree {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 5%;
        display:inline-block;
        position: absolute;
    }
    
    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 65rem;
        
        
        
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 45rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }
}
@media screen and (min-width: 710px) {
    .mobileoverlay {
        display:none;
    }

    .bestseller {display: none;}


}
@media screen and (max-width: 710px) {
    .bestseller {
        font-style: italic;
        color: black;
        border-bottom: 0.2rem solid #E9204F;
    }

    .sectionbackgroundimg {
        height: 103rem;
    }

    .serviceoverlay {
        height: 101rem;
    }
    .pricebuttonone {
        margin-left: 13rem;
    }

    .pricebuttontwo {
        margin-left: 10rem;
    }

    .pricebutton {
        margin-left: 14rem;
    }
    
    .servicequote {
        margin-left: 30%;
    }
    
    .textdiltwo {
        display: none;
    }

    .picdil {
        display:none;
    }

    .textdil {
        margin-top: 0rem;
    }
    .iconheight {
        width: 20px;
    }
    .iconheightone {
        width: 20px;
    }

    .smalliconpadding {
        margin-top: -0.5rem;
    }

    .smalliconpaddingtwo {
        margin-top: -0.5rem;
    }

    .smalliconpaddingthree {
        margin-top: -0.5rem;
    }
    .cardone {
        width: 93%;
    }

    .introcontent {
        flex-direction: column;
    }

    .card {width: 93%;}

    

    .carddescone {
        margin-bottom: -8rem;
    }

    .carddesctwo {
        margin-bottom: -9rem;
    }

    .carddescthree {
        margin-bottom: -6.5rem;
    }

    .cardone:after {
        width: 4.4%;
    }

    .card:after {
        width: 4.4%;
    }

    .cardone {
        height: 15rem;
    }

    .card {
        height: 15rem;
    }

    .divbutton {
        margin-bottom: -13rem;
        margin-top: 8rem;
        
        padding-left: 0rem;
    }


    .sectioncontent {
        flex-direction: column;
        
        
    }

    .sectioncard {
        width: 80vw;
        margin-top: 2rem;
    }


    .strategycontent {
        flex-direction: column;
    }
    
    .strategycard {
        width: 90%;
        height: 10rem;
    }

    .strategybackground {
        height: 60rem;
    }
    
    .strategycard {
        margin-top: 1rem;
    }

    
}



@media screen and (max-width: 699px) {
    .worksbackground {
        height: 75rem;
    }

    .worksoverlay {
        margin-left: 33%;
    }
    .gallery {
        margin-left: 25vw;
    }
    
    .toptextcontact {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 54.5%;
        display:inline-block;
        position: absolute;
    }
    
    .env {
        display:inline-block;
        padding: 0.5rem 0rem 0rem 77.5%;
        position: absolute;
    }
    
    .pho {
        display:inline-block;
        padding: 0.5rem 0rem 0rem 65%;
        position: absolute;
    }
    
    .toptexttwo {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 67.5%;
        display:inline-block;
        position: absolute;
    }
    
    .toptextthree {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 11%;
        display:inline-block;
        position: absolute;
    }
    

    .imageresize {
        width: 22rem;
        height: 15rem;
    }

    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 60rem;
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 40rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }

    .introcontent {
        margin-left: 3rem;
    }
}
@media screen and (max-width: 650px) {
    
    .reviewimage {
        width: 100%;
        margin-left: 0;
    }
    
    .introcontent {
        margin-left: 2rem;
    }

    .navtitle {
        padding-left: 2rem;
    }

    .title {
        margin-left: 2rem; 
        
    }
    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 55rem;
        
        
    
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 35rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }
}

/* Small line break adjustment */

@media screen and (max-width: 582px) {
    .carddescthree {
        margin-bottom: -8rem;
    }

    .toptextcontact {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 50.5%;
        display:inline-block;
        position: absolute;
    }
    
    .env {
        display:inline-block;
        padding: 0.5rem 0rem 0rem 76.5%;
        position: absolute;
    }
    
    .pho {
        display:inline-block;
        padding: 0.5rem 0rem 0rem 63%;
        position: absolute;
    }
    
    .toptexttwo {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 65.5%;
        display:inline-block;
        position: absolute;
    }
    
    .toptextthree {
        font-family: 'itc_avant_garde_gothicbold';
        font-size: 0.6rem;
        padding: 0.7rem 0rem 0rem 11%;
        display:inline-block;
        position: absolute;
    }
    
}

@media screen and (max-width: 540px) {
    .carddescone {
        margin-bottom: -10rem;
    }
}

@media screen and (max-width: 522px) {
    .carddesctwo {
        margin-bottom: -10.5rem;
    }

    .textdil {
        margin-left: 5rem;
    }

    .imageresize {
        display: none;
    }
   
    .servicetitle {
        margin-left: 10rem;
    }

    .servicetitledesc {
        margin-left:10rem;
        margin-top: 11rem;
    }
}

@media screen and (max-width: 494px) {
    .carddesctwo {
        margin-bottom: -10rem;
}
.toptextcontact {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 0.6rem;
    padding: 0.7rem 0rem 0rem 35.5%;
    display:inline-block;
    position: absolute;
}

.env {
    display:inline-block;
    padding: 0.5rem 0rem 0rem 76.5%;
    position: absolute;
}

.pho {
    display:inline-block;
    padding: 0.5rem 0rem 0rem 54%;
    position: absolute;
}

.toptexttwo {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 0.6rem;
    padding: 0.7rem 0rem 0rem 59.5%;
    display:inline-block;
    position: absolute;
}

.toptextthree {
    font-family: 'itc_avant_garde_gothicbold';
    font-size: 0.6rem;
    padding: 0.7rem 0rem 0rem 11%;
    display:inline-block;
    position: absolute;
}

}

@media screen and (max-width: 460px) {
    .carddesctwo {
        margin-bottom: -10rem;
    }
}

@media screen and (max-width: 440px) {
    .carddesctwo {
        margin-bottom: -12rem;
    }
}
@media screen and (max-width: 401px) {
    .carddescone {
        margin-bottom: -11rem;
    }
}
@media screen and (max-width: 398px) {
    .carddescthree {
        margin-bottom: -9rem;
    }
}

@media screen and (max-width: 360px) {
    .carddescone {
        margin-bottom: -12.5rem;
    }
}
/* End */
@media screen and (max-width: 599px) {
   .imageresize {
       width: 20rem;
   }

   .numberstwo {
       padding-left: 10vw;
   }

   .numbersone {
       padding-left: 12vw;
   }
    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 50rem;
        
        
        
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 30rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }
}
@media screen and (max-width: 550px) {
    
    .submitbutton {
        margin-left: 43vw;
    }
    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 43rem;
        
        
        
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 28rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }
}

@media screen and (max-width: 529px) {
.worksbackground {
    height: 148rem;
}

.worksoverlay {
    margin-left: 27%;
}

.gallery { margin-left: 30vw;}
}
@media screen and (max-width: 499px) {
    .thankfirst,.thanksecond {
        margin-left: 5%;
    }
    
    
    .wordpress {
        display: none !important;
    }

    .php {
        display: none !important;
    }

    .joomla {
        display: none !important;
    }

    .shopify {
        display: none !important;
    }

    .opencart {
        display: none !important;
    }

    .magneto {
        display: none !important;
    }
    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 40rem;
        
        
        
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 20rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }


    
}
@media screen and (max-width: 450px) {
    
    .carddescthree {
        margin-bottom: -8.5rem;
    }


    .toptextthree {
        padding-left: 5%;
    }
    
    
    .footertext {
        padding-top: 8rem;
    }
    
    .numbers {
        padding-left: 7vw;
    }

    .footertextp {
        padding-right: 15rem;
    }

    .footerservices,.footerservicestext {
        padding-left: 65%;
       
    }

    .footerservices:after {
        padding-top: 0.1rem;
    }

    .footerservices {
        padding-top: 1rem;
    }
    .animationtitle {
        margin-left: 30vw;
    }
    
    .animationtext {
        padding-left: 5vw;
    }
    .animationtextone {
        padding-left: 37vw;
    }
    .animationtexttwo {
        padding-left: 60vw;
    }

    .toptexttwo {
        padding-left: 58%;
        color:black;
    }
    .servicequote {
        margin-left: 23%;
    }

    .sectioncard{ 
        width: 75vw;

    }
    .pricebuttonone {
        margin-left: 5rem;
    }

    .pricebuttontwo { 
        margin-left: 2.5rem;
    }

    

    .pricebutton {
        margin-left: 7rem;

    }
    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 35rem;
        
        
        
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 20rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }
}

@media screen and (max-width: 417px) {
    .carddescthree {
        margin-bottom: -10rem;
    }
}

@media screen and (max-width: 399px) {

    .toptextthree {
        padding-left: 4%;
    }

    .layoutstitle {
        margin-left: 37%;
    }

    .strategycontent {
        margin-left: 5%;
    }

    .thanksecond,.thankfirst {
        margin-left: 2%;
        font-size: 2rem;
    }
    
    .text,.textone {
        margin-right: 5rem;
        width: 97%;
        
    }

    .reviewtitle:after {
        margin-left: 43%;
    }
    .reviewimage {
        margin-left: 0;
        
        width: 99%;
    }
    .quoteadjust {
        display: none !important;
    }

    .quoteadjustfirst {
        display: none !important;
    }
    .quoteadjustone {
        display: none !important;
    }

    .quoteadjustsecond {
        display: none !important;
    }

    .quoteadjustthree {
        display: none !important;
    }

    .quoteadjusttwo {
        display: none !important;
    }

    .worksoverlay {margin-left: 20%;}
    
    .animationtexttwo {
        padding-left: 65vw;
    }

    .animationtextone {
        padding-left: 40vw;
    }
    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 30rem;
        
        
        
        
    }
    .strategytitle, .strategytitletext {
        margin-left: 3rem;
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
   

    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 15rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }

    .carddescthree {
        margin-bottom: -9.5rem;
    }
}
@media screen and (max-width: 355px) {
    

    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 25rem;
        
        
        
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 10rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }
}
@media screen and (max-width: 300px) {
    

    nav li {
        padding: 0rem;
        margin: 0rem 5.9rem 2rem 35rem;
        
        
        
        
    }

    nav ul {
        margin: 0;
        padding: 0;
        display: block;
        
    }
    #nav-toggle {
        display: none;
    }
    
    .xno {
        display: inline-block;
        color: white;
        -webkit-transform:rotate(-90deg);
        -moz-transform:rotate(-90deg);
        -o-transform:rotate(-90deg); 
        margin-left: 15rem;
        font-size: 2.15rem
    }

    nav a {

        opacity: 0;
        transition: opacity 150ms ease-in-out;
    }

    nav {
        text-align: left;
        position: absolute;
        background-color: rgba(27,27,27,0.8);
        width: 100%;
        transform: scale(1,0);
        transform-origin: top;
        transition: transform 400ms ease-in-out;
        
    }
    #nav-toggle:checked ~ nav {
        transform: scale(1,1);
    }
    #nav-toggle:checked ~ nav a {
        opacity: 1;
        transition: opacity 250ms ease-in-out 250ms;
    }
}
