/* Enable snap scrolling */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-snap-type: y mandatory;
    /* overflow-y: auto; */
    /* Enable vertical scrolling */
    scrollbar-width: none;
    /* For Firefox */
    /* overflow-x: hidden !important; */

}

html {
    scroll-behavior: smooth !important;
    transition-duration: 8s;
    /* transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); */
    /* ease-in-out */
}

/* Hide scrollbar */
body::-webkit-scrollbar {
    width: 0;
    /* For Chrome, Safari, and Opera */
}

section {
    scroll-snap-align: start;
    height: 100vh;
    position: relative;
}

.containerOurMethod {
    /* Ensure the container fills the full height of the section */
    display: flex;
    /* Use flexbox to center content vertically */
    justify-content: center;
    align-items: center;
    max-width: 1500px;
    padding: 22vh 10vh 20vh 10vh;
}

.containerSlider {
    /* Ensure the container fills the full height of the section */
    /* display: flex; */
    /* Use flexbox to center content vertically */
    /* justify-content: center;
    align-items: center; */
    max-width: 100%;
    padding: 14vh 5vh 20vh 5vh;
}

.logo {

    /* Logo Change This was w:200px h:70px L:20% with logo.png */
    width: 410px;
    height: 100px;
    background-image: url(../images/Logo-Perfectfit.png);
    position: absolute;
    left: 10%;
    top: 0px;
    background-repeat: no-repeat;
}

.logoONE {
    background-image: url(../images/dell.png);
    width: 100px;
    height: 70px;
    background-repeat: no-repeat;
}

.logoTwo {
    background-image: url(../images/microsoft.png);
    width: 100px;
    height: 70px;
    background-repeat: no-repeat;
}

.logoThree {
    background-image: url(../images/lenovo.png);
    width: 100px;
    height: 70px;
    background-repeat: no-repeat;
}

.logoFour {
    background-image: url(../images/vmware.png);
    width: 100px;
    height: 70px;
    background-repeat: no-repeat;
}

.padderTop {
    padding-top: 50px;
}

header {
    /* background: #f3f0e7;
    width: 100%;
    height: 70px; */
}

.page-wrap-dark {
    background-color: #08070d;
    width: 100%;
    color: #f3f0e7;
}

.page-wrap-light {
    background-color: #f3f0e7;
    width: 100%;
    color: #303032;
}

/* Next Section Button */
#next-section-light,
#next-section-dark,
#next-section-last {
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 96vh;
    cursor: pointer;
    /* border-radius: 10px 10px 0px 0px; */
    font-size: 35px;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

#next-section-dark {
    width: 60px;
    background-color: #08070d;
    /* color: #f3f0e7; */
}

#next-section-light {
    width: 60px;
    background-color: #f3f0e7;
    /* color: #08070d; */
}

#next-section-last {
    width: 105px;
    background-color: #08070d;
    color: #f3f0e7;
}


#next-section-light:hover {
    background-color: #309958;
    color: #f3f0e7;
}

#next-section-dark:hover {
    background-color: #309958;
}

#next-section-last:hover {
    background-color: #309958;
    color: #f3f0e7;
}

/* Lines for Arrow */
.line1,
.line2,
.line3,
.line4 {
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: drawArrow1 1.5s ease-in-out infinite;
}

.line1 {
    filter: drop-shadow(0px 0px 3px #116466);
    stroke: #08070d;
}

.line2 {
    filter: drop-shadow(0px 0px 3px #116466);
    stroke: #08070d;
}

.line3 {
    filter: drop-shadow(0px 0px 3px #0fb8bb);
    stroke: #f3f0e7;
}

.line4 {
    filter: drop-shadow(0px 0px 3px #0fb8bb);
    stroke: #f3f0e7;
}

@keyframes drawArrow1 {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawArrow2 {
    to {
        stroke-dashoffset: 0;
    }
}


/* .fa-arrow-down {
   
    text-align: center;
} */

header .topMenu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-content: flex-end;
    justify-content: right;
    font-family: "Roboto", sans-serif;
    height: 70px;
    /* New Changes for bigger logo */
    margin-top: 1%;
}

header .topMenu li a {
    padding: 8px;
    color: rgb(87, 87, 87);
    text-decoration: none;
}

header .topMenu li {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #f3f0e7;
    position: relative;
    transition: all 0.5s ease;
    /* Apply transition to all properties */
    cursor: pointer;
    /* Add cursor pointer for better UX */
}

.selector {
    position: absolute;
    background-color: #309958;

    /* New Changes to make the logo bigger - Testing this was 90px */
    height: 125px;

    color: #f3f0e7;
    clip-path: polygon(0% 0%, 100% 0%, 100% 80%, 50% 100%, 0% 80%);
    z-index: 1000;
    left: 0;
    width: 0;
    z-index: 1000;
    transition: left 0.3s ease, width 0.3s ease, z-index 0s 0.3s;
    /* Add transition for z-index */
    /* Add transition for smooth resizing */
}

.topMenu li.selected a {
    color: #f3f0e7;
    position: relative;
}

.topMenu li a {
    z-index: 1001;
}


.nav-bar {
    background-color: #f3f0e7;
    /* new Changes to make the logo bigger - Testing This was 70px*/
    height: 100px;

    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
}

/* .mobile-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    height: 70px;
} */

.topMenu li.selected a {
    color: #f3f0e7;
}

.frontContent {
    margin-top: 30vh;
}

.mainParagraph {
    float: left;
    font-weight: normal;
    font-size: 16px;
    padding-top: 25px;
    width: 565px;

}

.mainHeading,
.sliderHeading {
    padding: 0;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    float: left;
    text-transform: uppercase;
    line-height: 55px;
    font-weight: normal;

}

.sliderHeading {
    font-size: 50px;
}

.mainHeading {
    font-size: 42px;
}



.mainHeadingTwo {
    padding: 0;
    position: absolute;
    top: 122vh;
    left: 20vh;
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 55px;
    font-weight: normal;
}

.headingLight {
    color: #f3f0e7;
}

.headingDark {
    color: #08070d;
}

.frontImage {
    top: 0em;
    left: -15em;
    position: relative;
    width: 150%;
    height: 100vh;
    background-image: url(../images/ITGUY.png);
    background-size: cover;
    background-position: center;
}

.secondImage {
    top: 8em;
    left: 0em;
    position: relative;
    height: 70vh;
    background-image: url(../images/MOF.png);
    background-size: cover;
    background-position: center;
}



.imageOne {
    width: 100%;
    height: 400px;
    background-image: url(../images/ImageThree.png);
    background-size: cover;
    background-position: center;
}

.imageTwo {
    width: 100%;
    height: 400px;
    background-image: url(../images/ImageTwo.png);
    background-size: cover;
    background-position: center;
}

.imageThree {
    width: 100%;
    height: 400px;
    background-image: url(../images/RepairComputer.png);
    background-size: cover;
    background-position: center;
}

span {
    color: #309958;
}

.ourMethod {
    padding: 10vh;
}

.subParagraphDark,
.subParagraphLight {
    font-size: 15px;
    padding-top: 50px;
    margin: 0;
    text-align: left;
}

.subParagraphDark {
    color: #4d4d4f;
}

.subParagraphLight {
    color: #f3f0e7;
}

.subHeading {
    margin: 0;
    padding-bottom: 2px;
    font-size: 32px;
    text-transform: uppercase;
    font-weight: normal;
    font-family: 'Oswald', sans-serif;
}

.contactDetail {
    margin: 0;
    padding-bottom: 2px;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: normal;
    font-family: 'Oswald', sans-serif;
    padding: 20px;
    text-align: left;
    margin-top: 0%;
    margin-left: 5%;
}

.footer-social-icons {
    font-size: 40px;
    position: absolute;
    bottom: 0;
    left: 30vh;
}

.mainHeading-contact {
    font-size: 60px;
    width: 100%;
    position: relative;
    left: 35%;
    font-family: 'Oswald', sans-serif;
}

.social-media-icons {
    padding: 15px;
}

.alignLeft {
    text-align: left;
}

/* Slider Styling */
.slider {
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-wrap {
    width: 193vh;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slider-wrap ul.slider {
    width: 193vh;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

.slider-wrap ul.slider li {
    float: left;
    position: relative;
    width: 193vh;
    height: 80vh;
}

.slider-wrap ul.slider li>div {
    position: absolute;
    top: 20px;
    left: 35px;
}

.slider-wrap ul.slider li>div h3 {
    font-size: 36px;
    text-transform: uppercase;
}

.slider-wrap ul.slider li i {
    text-align: center;
    line-height: 400px;
    display: block;
    width: 100%;
    font-size: 90px;
}


/*btns*/
.btnsLight,
.btnsDark {
    position: absolute;
    width: 50px;
    height: 60px;
    top: 50%;
    margin-top: -25px;
    line-height: 57px;
    text-align: center;
    cursor: pointer;

    z-index: 1001;


    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;

    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.btnsDark {
    background: #08070d;
}

.btnsLight {
    background: white;
}

.btnsDark:hover {
    background: #08070d;
}

.btnsLight:hover {
    background: white;
}

.counter {
    top: 30px;
    right: 35px;
    width: auto;
    position: absolute;
}

.fa-arrow-right {
    color: #309958;
}

.fa-arrow-left {
    color: #309958;
}

/* Social Media buttons*/

@media only screen and (min-width : 1224px) {
    .button-block {
        width: 600px;
        margin: -27px -27px -27px;
        margin-left: auto;
        margin-top: -4%;
    }

    .social {
        display: inline-block;
        margin: 20px;
        cursor: pointer;
    }

    .social a {
        display: block;
        background: black;
        padding: 10px;
        position: relative;
        transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0, 0);
        box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.5);
        transition: all 0.5s ease-in-out;
    }

    .social a::before {
        dislpay: block;
        content: "";
        position: absolute;
        width: 20px;
        height: 100%;
        left: -20px;
        top: 10px;
        background: rgba(0, 0, 0, 0.7);
        transform: rotate(0deg) skewY(-45deg);
    }

    .social a::after {
        dislpay: block;
        content: "";
        position: absolute;
        bottom: -20px;
        left: -10px;
        height: 20px;
        width: 100%;
        transform: rotate(0deg) skewX(-45deg);
        background: rgba(0, 0, 0, 0.7);
        transform: rotate(45deg) scewY(-45deg);
    }

    .social a:hover {
        transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
        box-shadow: -50px 50px 30px rgba(0, 0, 0, 0.5);
    }

    .social a i {
        color: white;
        font-size: 15pt;
    }

    /* Second Image Width */
    .secondImage {
        width: 100%;
    }

    .card-login>h1 {
        margin-top: -25px;
    }

    .btn-login {

        margin: -16px;
    }

}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    .button-block {
        width: 600px;
        margin: 100px;
        left: 19%;
        position: relative;
        bottom: 0px;
    }

    .social {
        display: inline-block;
        margin: 20px;
        cursor: pointer;
    }

    .social a {
        display: block;
        background: black;
        padding: 10px;
        position: relative;
        transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(0, 0);
        box-shadow: -20px 20px 10px rgba(0, 0, 0, 0.5);
        transition: all 0.5s ease-in-out;
    }

    .social a::before {
        dislpay: block;
        content: "";
        position: absolute;
        width: 20px;
        height: 100%;
        left: -20px;
        top: 10px;
        background: rgba(0, 0, 0, 0.7);
        transform: rotate(0deg) skewY(-45deg);
    }

    .social a::after {
        dislpay: block;
        content: "";
        position: absolute;
        bottom: -20px;
        left: -10px;
        height: 20px;
        width: 100%;
        transform: rotate(0deg) skewX(-45deg);
        background: rgba(0, 0, 0, 0.7);
        transform: rotate(45deg) scewY(-45deg);
    }

    .social a:hover {
        transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(20px, -20px);
        box-shadow: -50px 50px 30px rgba(0, 0, 0, 0.5);
    }

    .social a i {
        color: white;
        font-size: 15pt;
    }

    /* Second Image Width */
    .secondImage {
        width: 130%;
    }

    .card-login>h1 {
        margin: 0px;
    }


    .btn-login {

        margin: 25px;
    }

}




/* Cluster Fuck */

#next,
#next-method,
#next-options {
    right: -50px;
    border-radius: 7px 0px 0px 7px;
}

#previous,
#previous-method,
#previous-options {
    left: -50px;
    border-radius: 0px 7px 7px 7px;
}

#slider-wrap.active #next,
#slider-wrap-method.active #next-method,
#slider-wrap-options.active #next-options {
    right: 0px;
}

#slider-wrap.active #previous,
#slider-wrap-method.active #previous-method,
#slider-wrap-options.active #previous-options {
    left: 0px;
}


/*bar*/
.pagination-wrap {
    min-width: 20px;
    margin-top: 70vh;
    margin-left: auto;
    margin-right: auto;
    height: 15px;
    position: relative;
    text-align: center;
}

.pagination-wrap ul {
    width: 100%;
}

.pagination-wrap ul li {
    margin: 0 4px;
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    position: relative;
    top: 0;


}

.pagination-wrap ul li.active {
    width: 12px;
    height: 12px;
    top: 3px;
    opacity: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 0px;
}

/* Slider Images */

.innerContainer {
    width: 100%;
}

.text-center {
    display: grid;
    justify-content: flex-start;
    align-items: center;
    float: left;
    width: 75%;
}

.text-center-mobile {
    display: grid;
    justify-content: flex-start;
    align-items: center;
    /* float: left; */
    width: 100%;
}

.sliderImage {
    height: 500px;
    width: 500px;
    padding: 50px;
    float: right;
    background-position: center;
    object-fit: cover;
}

.sliderOneImageOne {
    background-image: url(../images/ThumbsUP.png);
}

.sliderOneImageTwo {
    background-image: url(../images/POS3.png);
}

.sliderOneImageThree {
    background-image: url(../images/Affordiable.png);
}

.sliderOneImageFour {
    background-image: url(../images/CloudSitter.png);
}

.sliderOneImageFive {
    background-image: url(../images/freedom.png);
}

/* slider 2 */

.sliderTwoImageOne {
    background-image: url(../images/Voip.png);
}

.sliderTwoImageTwo {
    background-image: url(../images/ITSupport.png);
}

.sliderTwoImageThree {
    background-image: url(../images/AngryManInSuit.png);
}

.sliderTwoImageFour {
    background-image: url(../images/castleFiltered2.png);
}

.sliderTwoImageFive {
    background-image: url(../images/Connecting.png);
}

/* slider 3 */

.sliderThreeImageOne {
    background-image: url(../images/CloudSitter.png);
}

.sliderThreeImageTwo {
    background-image: url(../images/CloudLetter.png);
}

.sliderThreeImageThree {
    background-image: url(../images/ClipBoardGuy.png);
}

.sliderThreeImageFour {
    background-image: url(../images/24hourGuy.png);
}

/* Downloads Section */
.titleHeadings-light,
.titleHeadings-dark {
    font-size: 50px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0%;
}

.titleHeadings-light {
    color: #f3f0e7;
}

.titleHeadings-dark {
    color: #08070d;
}

.downloadContainer {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.btnContainers {
    margin-left: auto;
    margin-right: auto;
}

.btnDownloads {
    width: 100px;
    height: 50px;
    border-radius: 5%;
    background-color: #45a049;
}

/* Custom Button */

.dl-button {
    --duration: 4000;
    --success: #16BF78;
    --grey-light: #99A3BA;
    --grey: #6C7486;
    --grey-dark: #3F4656;
    --light: #CDD9ED;
    --shadow: rgba(18, 22, 33, 0.6);
    --shadow-dark: rgba(18, 22, 33, 0.85);
    display: block;
    text-decoration: none;
    perspective: 500px;
    margin-top: 1%;
    width: 21%;
    margin-left: auto;
    margin-right: auto;
}

.dl-button>div {
    position: relative;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    padding: 16px 24px;
    box-shadow: 0 4px 12px var(--shadow);
}

.dl-button>div .icon {
    --color: var(--grey);
    margin-right: 12px;
    position: relative;
    transform: translateZ(8px);
}

.dl-button>div .icon div {
    overflow: hidden;
    position: relative;
    width: 20px;
    height: 22px;
}

.dl-button>div .icon div:before,
.dl-button>div .icon div:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    top: 2px;
    transition: opacity 0.3s ease;
}

.dl-button>div .icon div:before {
    left: 6px;
    background-image: radial-gradient(circle at 0 100%, var(--color) 2px, #fff 0px);
}

.dl-button>div .icon div:after {
    right: 6px;
    background-image: radial-gradient(circle at 100% 100%, var(--color) 2px, #fff 0px);
}

.dl-button>div .icon div svg {
    width: 20px;
    height: 18px;
    display: block;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

.dl-button>div .icon div svg.arrow {
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    transform: translateY(-1px);
}

.dl-button>div .icon div svg.shape {
    color: var(--color);
    transition: color 0.4s ease;
}

.dl-button>div .icon span {
    --s: 1;
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 2px;
    background: var(--color);
    height: 6px;
    border-radius: 50%;
    display: block;
    transform: translateY(0) scale(var(--s));
}

.dl-button>div .label {
    --color: var(--grey-dark);
    line-height: 22px;
    font-size: 16px;
    font-weight: 500;
    color: var(--color);
    position: relative;
    transition: color 0.4s ease;
    transform: translateZ(8px);
}

.dl-button>div .label>div {
    display: flex;
    transition: opacity 0.25s ease;
}

.dl-button>div .label>div:not(.show) {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.dl-button>div .label>div.hide {
    opacity: 0;
}

.dl-button>div .label>div .counter {
    overflow: hidden;
    display: flex;
    height: 18px;
    line-height: 18px;
    margin: 2px 0;
    position: relative;
    transition: opacity 0.3s ease;

    margin-top: -30%;
    left: -12%;
}

.dl-button>div .label>div .counter:before,
.dl-button>div .label>div .counter:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 1;
}

.dl-button>div .label>div .counter:before {
    top: 0;
    background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
}

.dl-button>div .label>div .counter:after {
    bottom: 0;
    background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
}

.dl-button>div .label>div .counter span {
    display: inline-block;
    margin: 0 4px 0 2px;
}

.dl-button>div .label>div .counter ul {
    --y: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 10px;
    height: 18px;
    -webkit-backface-visibility: hidden;
    transform: translateY(var(--y)) translateZ(0);
}

.dl-button>div .label>div .counter ul:nth-child(1) {
    transition: transform calc(var(--duration) * .2ms) ease-in-out;
}

.dl-button>div .label>div .counter ul:nth-child(2) {
    transition: transform calc(var(--duration) * .8ms) ease-in-out;
}

.dl-button>div .label>div .counter ul:nth-child(3) {
    transition: transform calc(var(--duration) * .8ms) ease-in-out;
}

.dl-button>div .label>div .counter ul li {
    width: 10px;
    height: 18px;
}

.dl-button>div .label>div .counter.hide {
    opacity: 0;
}

.dl-button>div .progress {
    --s: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    transform-origin: 50% 100%;
    transform: scaleY(var(--s));
    transition: transform 0.4s ease;
}

.dl-button>div .progress:before,
.dl-button>div .progress:after {
    --s: 1;
    content: '';
    background: var(--success);
    position: absolute;
    left: 0;
    top: 50px;
    bottom: 0;
    right: 0;
    transform-origin: 0 50%;
    transform: scaleX(var(--s));
}

.dl-button>div .progress:before {
    opacity: 0.35;
}

.dl-button>div .progress:after {
    --s: 0;
    transition: transform calc(var(--duration) * .9ms) ease-in-out;
}

.dl-button.active>div {
    animation: button calc(var(--duration) * 1ms) linear forwards;
}

.dl-button.active>div .icon div:before,
.dl-button.active>div .icon div:after {
    opacity: 0;
    transition-delay: 0.4s;
}

.dl-button.active>div .icon svg.arrow {
    animation: arrow calc(var(--duration) * .18ms) linear 4 calc(var(--duration) * .2ms);
}

.dl-button.active>div .icon span {
    animation: span calc(var(--duration) * .18ms) linear 4 calc(var(--duration) * .2ms);
}

.dl-button.active>div .label>div .counter ul:nth-child(1) {
    --y: -18px;
    transition-delay: calc(var(--duration) * .72ms);
}

.dl-button.active>div .label>div .counter ul:nth-child(2) {
    --y: -180px;
    transition-delay: calc(var(--duration) * .09ms);
    animation: motion calc(var(--duration) * .5ms) linear forwards calc(var(--duration) * .19ms);
}

.dl-button.active>div .label>div .counter ul:nth-child(3) {
    --y: -540px;
    transition-delay: calc(var(--duration) * .075ms);
    animation: motion calc(var(--duration) * .8ms) linear forwards calc(var(--duration) * .075ms);
}

.dl-button.active>div .progress {
    --s: 1;
    transition-delay: 0.4s;
}

.dl-button.active>div .progress:after {
    --s: 1;
    transition-delay: 0.4s;
}

.dl-button.done>div .icon {
    --color: var(--success);
}

.dl-button.done .label {
    --color: var(--success);
}

.dl-button.done .label .counter {
    width: 0;
}

@keyframes arrow {
    38% {
        transform: translateY(100%);
        opacity: 1;
    }

    39% {
        transform: translateY(100%);
        opacity: 0;
    }

    40% {
        transform: translateY(-100%);
        opacity: 0;
    }

    41% {
        transform: translateY(-100%);
        opacity: 1;
    }

    100% {
        transform: translateY(-1px);
        opacity: 1;
    }
}

@keyframes span {
    25% {
        transform: translateY(2px) scale(var(--s));
    }

    55% {
        transform: translateY(2px) scale(var(--s));
    }

    80%,
    100% {
        transform: translateY(0) scale(var(--s));
    }
}

@keyframes motion {

    20%,
    70% {
        filter: blur(0.4px);
    }
}

@keyframes button {
    0% {
        transform: translateX(0) translateZ(0) scale(1) rotateY(0deg);
    }

    10% {
        transform: translateX(0) translateZ(0) scale(0.96) rotateY(0deg);
        box-shadow: 0 4px 8px var(--shadow-dark);
    }

    20% {
        transform: translateX(-16px) translateZ(32px) scale(1) rotateY(-16deg);
        box-shadow: 4px 12px 20px var(--shadow-dark);
    }

    85% {
        transform: translateX(16px) translateZ(32px) scale(1) rotateY(16deg);
        box-shadow: -4px 12px 20px var(--shadow-dark);
    }

    95% {
        transform: translateX(0) translateZ(0) scale(1.12) rotateY(0deg);
        box-shadow: 0 8px 24px var(--shadow-dark);
    }

    100% {
        transform: translateX(0) translateZ(0) scale(1) rotateY(0deg);
    }
}

.dl-button.done+.restart {
    opacity: 1;
    visibility: visible;
}

.restart {
    --grey-dark: #3F4656;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--grey-dark);
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.restart svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    display: inline-block;
    vertical-align: top;
}

html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: inherit;
}

*:before,
*:after {
    box-sizing: inherit;
}



/* Media Queries for the About Us image on contact us section */
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) {
    .contactImage {
        height: 150%;
        padding: 50px;
        background-image: url(../images/Contact\ Us-\ Little_Image.png);
        background-repeat: no-repeat;
        margin-left: 30vh;
        margin-top: -75vh;
    }

    .paragraphAboutUs {
        padding: 25px 25px 0px 25px;
        text-align: center;
        font-size: 18px;
        font-family: 'Oswald', sans-serif;
    }

    .mainHeading-about {
        font-size: 60px;
        width: 100%;
        position: relative;
        left: 37%;
        font-family: 'Oswald', sans-serif;
    }

    .contactImageWindows {
        margin-top: 10%;
    }

    .contactImageMac {
        margin-top: 10%;
    }

    .FormBtnContainer {
        margin-left: 18%;
    }

    .card-login>h1 {
        margin-top: -25px;
    }

}

/* Large screens ----------- */
@media only screen and (min-width : 1824px) {
    .contactImage {
        height: 150%;
        padding: 50px;
        background-image: url(../images/Contact\ Us-\ Little_Image.png);
        background-repeat: no-repeat;
        margin-left: 42vh;
        margin-top: -33vh;
    }

    .paragraphAboutUs {
        padding: 50px 160px 0px 160px;
        text-align: center;
        font-size: 18px;
        font-family: 'Oswald', sans-serif;
    }

    .mainHeading-about {
        font-size: 60px;
        width: 100%;
        position: relative;
        left: 40%;
        font-family: 'Oswald', sans-serif;
    }

    .contactImageWindows {
        margin-top: 20%;
    }

    .contactImageMac {
        margin-top: 20%;
    }

    .FormBtnContainer {
        margin-left: 25%;
    }

    .card-login>h1 {
        margin-top: 0px;
    }


}

.contactImageWindows,
.contactImageMac {
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
}

.contactImageWindows {
    background-image: url(../images/BillGates\ Change\ Perspective.png);
}

.contactImageMac {
    background-image: url(../images/SteveJobs.png);
}

.addressTEXT {
    font-size: 15px;
    padding: 1px 10px 20px 10px;
    text-align: left;
    text-decoration: none;
}



/*ANIMATION*/
.slider-wrap ul,
.pagination-wrap ul li {
    -webkit-transition: all 1s cubic-bezier(1, .01, .32, 1);
    -moz-transition: all 1s cubic-bezier(1, .01, .32, 1);
    -o-transition: all 1s cubic-bezier(1, .01, .32, 1);
    -ms-transition: all 1s cubic-bezier(1, .01, .32, 1);
    transition: all 1s cubic-bezier(1, .01, .32, 1);
}

/* Contact page */

.lightSide {
    height: 100vh;
    width: 100vh;
    background-color: #f3f0e7;
}

.darkSide {
    height: 100vh;
    width: 100vh;
    background-color: #08070d;
}

.contactContentRight {
    /* display: flex; */
    /* Use flexbox for easy centering */
    /* justify-content: center; */
    /* Horizontally center the text */
    /* align-items: center; */
    /* Vertically center the text */
    height: 100%;
    /* Ensure the div takes up the full height of its container */
    margin-top: 13vh;
}

.contactContentRight-Mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-content {
    font-size: 30px;
    line-height: 2.5em;
    font-family: 'Oswald', sans-serif;
}

.contact-content-mobile {
    font-size: 24px;
    line-height: 2.5em;
    font-family: 'Oswald', sans-serif;
    text-align: left;
    /* margin-left: 10%; */
    margin-top: 5%;
}

.contact-mobile-icons {
    padding: 20px;
}

.addressTEXTMobile {}



.contactContentLeft {
    display: flex;
    /* Use flexbox for easy centering */
    justify-content: center;
    /* Horizontally center the text */
    align-items: center;
    /* Vertically center the text */
    height: 20%;
    margin-top: 8%;
    /* Ensure the div takes up the full height of its container */
}

.mapContainer {
    display: flex;
    /* Use flexbox for easy centering */
    justify-content: center;
    /* Horizontally center the text */
    align-items: center;
    border-radius: 1.5rem !important;
}

/* form */
label {
    color: #f3f0e7;
    font-size: 20px;
}

input[type=text],
select {
    width: 100%;
    padding: 8px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=email],
select {
    width: 100%;
    padding: 8px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #309958;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

/* textarea {
    width: 106%;
    height: 50%;
    padding: 8px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
} */

.mobile-textArea {
    width: 100%;
    height: 50%;
    padding: 8px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.desktop-textArea {
    width: 106%;
    height: 50%;
    padding: 8px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* mobile and desktop selection */

.desktop-content {
    display: block;
}

.mobile-content {
    display: none;
}

/* Media query for mobile screens */
@media only screen and (max-width: 768px) {

    /* Hide desktop content */
    .desktop-content {
        display: none;
    }

    html,
    body {
        overflow-x: hidden !important;
    }

    /* Show mobile content */
    .mobile-content {
        display: block;
    }
}


.mobile-front-dark,
.mobile-front-light {
    width: 101%;
    height: 100vh;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    position: relative;
}

.mobile-front-dark {
    background-color: #08070d;
    color: #f3f0e7;
}

.mobile-front-light {
    background-color: #f3f0e7;
    color: black;
}

.mobile-heading {
    font-size: 40px;
    padding: 20px;

}

.heading-mobile-contact {
    padding-top: 50px;
    font-size: 60px;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

.mobile-heading-middle {
    display: flex;
    /* padding: 20px; */
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.mobile-heading-middle-contact {
    padding-top: 2%;
    align-items: center;
    height: 100%;
}

.method-heading {
    font-size: 80px;
    padding: 20px;
    line-height: 12vh;
}

.mobile-subHeading {
    font-size: 20px;
    padding: 20px;
}

.mobile-front-image {
    position: absolute;
    left: 0;
    background-image: url(../images/Untitled\ design\ \(12\).png);
    width: 100%;
    height: 46%;
    background-size: cover;
    background-repeat: no-repeat;
}

.mobileImageSecond {
    position: absolute;
    left: 0;
    background-image: url(../images/MOF\ MOBILE.png);
    width: 100%;
    height: 46%;
    background-size: cover;
    background-repeat: no-repeat;
}

.mobileImageThird {
    position: absolute;
    left: -15%;
    top: 50%;
    background-image: url(../images/Contact\ Us-\ Little_Image.png);
    width: 80%;
    height: 51%;
    background-size: cover;
    background-repeat: no-repeat;
}

.method-images {
    left: 0;
    width: 100%;
    height: 46%;
    background-size: cover;
    background-repeat: no-repeat;
}

.mobile-method-image-one {
    background-image: url(../images/StronkMan.png);
}

.mobile-method-image-two {
    background-image: url(../images/StronkMan.png);
}

.mobile-method-image-three {
    background-image: url(../images/StronkMan.png);
}

/* slider for mobile */

.slider-mobile {
    list-style: none;
    margin: 0;
    padding: 0;
}


.slider-wrap-mobile {
    width: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-wrap-mobile ul.slider-mobile {
    width: 100vh;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
}

.slider-wrap-mobile ul.slider-mobile li {
    float: left;
    position: relative;
    width: 100vh;
    height: 80vh;
}

.slider-wrap-mobile ul.slider-mobile li>div {
    position: absolute;
    top: 20px;
}

.slider-wrap-mobile ul.slider-mobile li>div h3 {
    font-size: 36px;
    text-transform: uppercase;
}

.slider-wrap-mobile ul.slider-mobile li i {
    text-align: center;
    line-height: 400px;
    display: block;
    width: 193vh;
    font-size: 90px;
}


/*btns*/
.btnsLight,
.btnsDark {
    position: absolute;
    width: 50px;
    height: 60px;
    top: 50%;
    margin-top: -25px;
    line-height: 57px;
    text-align: center;
    cursor: pointer;

    z-index: 1001;


    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;

    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.btnsDark {
    background: #08070d;
}

.btnsLight {
    background: white;
}

.btnsDark:hover {
    background: #08070d;
}

.btnsLight:hover {
    background: white;
}

.counter {
    top: 30px;
    right: 35px;
    width: auto;
    position: absolute;
}

.fa-arrow-right {
    color: #309958;
}

.fa-arrow-left {
    color: #309958;
}

/* buttons */

#next-mobile-benefits,
#next-mobile-options,
#next-mobile-features {
    top: 65%;
	right: 50vh;
}


#previous-mobile-benefits,
#previous-mobile-options,
#previous-mobile-features {
    top: 65%;
    left: 0;
}

.sliderHeading-mobile {
    font-size: 40px;
    padding: 0;
    margin: 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 55px;
    font-weight: normal;
    text-align: center;
    width: 45vh;
	margin-left:25px;
}

.subParagraphLight-mobile {
    font-size: 15px;
    padding-top: 50px;
    margin: 0;
    text-align: center;
    width: 45vh;
	margin-left:25px;
}


.sliderImage-mobile {
    position: relative;
    width: 400px;
    height: 400px;
    padding: 0;
    background-size: cover;
}


#slider-wrap-mobile-benefits.active #next-mobile-benefits,
#slider-wrap-mobile-options.active #next-mobile-options,
#slider-wrap-mobile-features.active #next-mobile-features {
    top: 65%;
    right: 50vh;
}


#slider-wrap-mobile-benefits.active #previous-mobile-benefits,
#slider-wrap-mobile-options.active #previous-mobile-options #slider-wrap-mobile-features.active #previous-mobile-features {
    top: 65%;
    left: 0px;
}

/* animation */
.slider-wrap-mobile ul,
.pagination-wrap ul li {
    -webkit-transition: all 1s cubic-bezier(1, .01, .32, 1);
    -moz-transition: all 1s cubic-bezier(1, .01, .32, 1);
    -o-transition: all 1s cubic-bezier(1, .01, .32, 1);
    -ms-transition: all 1s cubic-bezier(1, .01, .32, 1);
    transition: all 1s cubic-bezier(1, .01, .32, 1);
}

.FormBtn {
    width: 31pc;
    height: 43px;
    background-color: #0fb8bb;
    border-radius: 5%;
}

.FormBtn:hover {
    background-color: #16BF78;
    cursor: pointer;
}

.FormBtnText {
    font-size: 30px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: #08070d;
    text-align: center;

}

.FormBtnContainer {
    position: relative;
    top: 5em;
}

.popUpForm.popUpFormMobile {
    position: relative;
    top: -60vh;
    left: -42vh;
    /* width: 750px;
    height: 750px; */
    z-index: 500000;
    background-color: #99A3BA;
    border-radius: 5%;
}

.popUpFormMobile {
    display: block;
}

.popUpFormContainer {
    position: relative;
    top: -27.5em;
    left: -19em;
}

.popUpFormContainerMobile {
    position: relative;
}

/* From Codepen */

.card-login {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 35px;
    background: #2f2841;
    border-radius: 20px;
    box-shadow: 0px 10px 40px #00000056;
    display: none;
}

.card-login>h1 {
    color: #00ff88;
    font-weight: 800;
}

.textfield {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0;
}

.textfield>input {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12px;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfield>input::placeholder {
    color: #f0ffff94;
}

.textfield>textarea {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 15px;
    background: #514869;
    color: #f0ffffde;
    font-size: 12px;
    box-shadow: 0px 10px 40px #00000056;
    outline: none;
    box-sizing: border-box;
}

.textfield>textarea::placeholder {
    color: #f0ffff94;
}

.textfield>label {
    color: #f0ffffde;
    margin-bottom: 10px;
}

.btn-login {
    width: 100%;
    padding: 16px 0;
    border: none;
    text-transform: uppercase;
    border-radius: 8px;
    outline: none;
    font-weight: 800;
    letter-spacing: 3px;
    color: #2b134b;
    background: #00ff88;
    cursor: pointer;
    box-shadow: 0px 10px 40px -12px #00ff8052;
    margin-left: 0px;
}

@media only screen and (max-width: 950px) {
    .card-login {
        width: 85%;
    }
}

@media only screen and (max-width: 600px) {
    .main-login {
        flex-direction: column;
    }

    .left-login {
        width: 100%;
        height: auto;
    }

    .left-login>h1 {
        display: none;
    }

    .right-login {
        width: 100%;
        height: auto;
    }

    .left-login-img {
        width: 50vw;
    }

    .card-login {
        width: 100%;
    }
}

.wpcf7-form-control-wrap {
    width: 100%;
}

#note {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    resize: vertical;
    /* Optional, allows up/down resizing */
}