/* fonts */
@import url('https://fonts.googleapis.com/css?family=Nunito|Poppins&display=swap');
@font-face {
    font-family: 'futura_ltbook';
    src: url('fonts/futuralt-book-webfont.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'futura_ltbook';
}
body, html{
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth !important;
    position: relative;    
}
.heading{
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
}
.text{
    font-size: 20px;
}

.landingPage{
    min-height: 100vh;
    background: url("../assets/background/landingPage3.png");
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    z-index: 0;
}
.landingPage .content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.landingPage .content h1{
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
}
.landingPage .content p{
    max-width: 900px;
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    margin: 1rem;
}
.landingPage .content a{
    text-decoration: none;
    background: #363636;
    color: #fff;
    padding: 0.5rem 2rem;
    margin: 1rem;
    cursor: pointer;
    transition: 0.5s ease;
}
.landingPage .content a:hover,
.landingPage .content a:focus{
    background: #c63346;
}
.landingPage .middle{
    position: absolute;
    left: 50%;
    top: 85%;
    transform: translate(-50%, -50%);
}
.landingPage .mouse{
    width: 25px;
    height: 40px;
    border: 2px solid #363636;
    border-radius: 60px;
}
.landingPage .mouse:before{
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #363636;
    border-radius: 50%;
    opacity: 1;
    animation: mouse 2s infinite;
}
@keyframes mouse{
    from{
        opacity: 1;
        top: 30%;
    }
    to{
        opacity: 0.5;
        top: 70%;
    }
}

header{
    display: flex;
    padding: 0 8rem;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: 0.5s ease;
}
header .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}
header .logo img{
    width: 50px;
    height: 50px;
}
header .logo a{
    display: none;
}
header .logo a img{
    width: 20px !important;
    height: 20px !important;
}
header .navTabs{
    flex: 0.8;                                          /*temparary*/
}
header .navTabs ul{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
}
header .navTabs ul li{
    list-style-type: none;
    padding: 1rem;
    cursor: pointer;
}
header .navTabs ul .dropdown{
    position: relative;
}
header .navTabs ul .dropdown ul{
    position: absolute;
    top: 110%;
    left: 0;
    display: block;
    width: 200px;
    z-index: 1;
    transition: 0.5s ease;
    opacity: 0;
    visibility: hidden;
}
header .navTabs ul .dropdown ul a{
    text-decoration: none;
    color: whitesmoke;
}
header .navTabs ul .dropdown ul li{
    background: #363636b2;
}
header .navTabs ul .dropdown:hover ul{
    opacity: 1;
    visibility: visible;
}
header .navTabs ul .dropdown:hover ul a{
    display: block;
    width: 100%;
}
header .navTabs .dropdown{
    display: flex;
    align-items: center;
}
header .navTabs .dropdown img{
    width: 15px;
    margin-left: 0.5rem;
}
header .rightNav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0.2;
}
header .rightNav a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
    color: #363636;
    cursor: pointer;
}
header .rightNav a img{
    width: 30px;
    margin-right: 0.5rem;
}
.magentoNeed{
    padding: 100px;
    text-align: center;
}
.magentoNeed p{
    max-width: 900px;
    margin: 0.5rem auto;
}
.magentoNeed .slider1{
    position: relative;
}
.magentoNeed .magentoNeedSlider{
    padding: 0 3rem;
}
.magentoNeed .magentoNeedSlider .card{
    text-align: center;
    margin: 2rem 1rem;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    height: 300px;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    outline: none;
}
.magentoNeed .magentoNeedSlider .card img{
    width: 100px;
    margin: 1rem auto;
}
.magentoNeed .slider-btn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #363636;
    outline: none;
    background: #fff;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.5s ease;
}
.magentoNeed .slider-btn:hover{
    background-color: #c63347a1;
}
.magentoNeed .slider-btn img{
    width: 10px;
}
.magentoNeed .prev{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(-50%, -50%);
}
.magentoNeed .next{
    position: absolute;
    top: 50%;
    left: 95%;
    transform: translate(-50%, -50%);
}
.magentoNeed .slick-dots{
    display: none !important;
}

.hireMagento{
    background: url("../assets/background/hireback.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px;
    color: #fff;
}
.hireMagento h1{
    background: #fff;
    color: #363636;
    max-width: 30%;
    padding: 0 1rem;
}
.hireMagento p{
    margin-top: 1rem;
}

.stepsToHire{
    display: flex;
    align-items: stretch;
}
.stepsToHire .steps{
    padding: 100px;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.stepsToHire .steps ul{
    width: 100%;
    margin-top: 1rem;
}
.stepsToHire .steps .card{
    width: 100%;
    border:2px solid whitesmoke;
    list-style-type: none;
    padding: 1.5rem 0.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    position: relative;
    box-shadow: 10px 10px 10px 0 rgba(0,0,0,0.2);
    padding-left: 35%;
}
.stepsToHire .steps .card .cut{
    position: absolute;
    top: -10%;
    left: -2.5%;
    height: 120%;
    width: 40%;
    border-radius: 10px;
    clip-path: polygon(0 0, 95% 0, 60% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;;
}
.stepsToHire .steps .card:nth-child(1) .cut{
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 20%, rgba(255,80,80,1) 60%); 
}
.stepsToHire .steps .card:nth-child(2) .cut{
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 20%, rgba(80,233,255,1) 60%); 
}
.stepsToHire .steps .card:nth-child(3) .cut{
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 15%, rgba(248,175,0,1) 50%); 
}
.stepsToHire .steps .card:nth-child(4) .cut{
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 15%, rgba(230,248,0,1) 50%);  
}
.stepsToHire .steps .card:nth-child(5) .cut{
    background: rgb(54,54,54);
    background: linear-gradient(90deg, rgba(54,54,54,1) 20%, rgba(255,80,160,1) 60%);  
}
.stepsToHire .back{
    width: 50%;
    flex: 1;
    background: url("../assets/background/hirestepback.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}
.stepsToHire .back:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,0) 30%,rgba(255,255,255,1) 100%);
}

.whyToHire{
    padding: 100px;
    text-align: center;
    position: relative;
}
.whyToHire h1{
    margin-bottom: 1.5rem;
}
.whyToHire p{
    max-width: 1000px;
    margin: 0.5rem auto;
}
.whyToHire .card-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.whyToHire .card-group .card {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem;
    width: 30%;
    border:1px solid #929292;
    box-shadow: 0 0 3px 0 rgba(0,0,0,0.8);
    border-radius: 5px;
    padding: 1rem;
    font-size: 16px;
    transition: 0.5s ease;
}
.whyToHire .card-group .card:hover{
    background: #c63346;
    box-shadow: none;
    color: #fff;
}
.whyToHire:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../assets/background/29.jpg");
    opacity: 0.05;
    z-index: -1;
}
.hiringStandards{
    padding: 100px;
    text-align: center;
    position: relative;
    background: url("../assets/background/hiringStandards2.png");
    background-size: cover;
    background-position: center;
}
.hiringStandards h1{
    color: #fff;
    padding: 0.5rem;
    margin : 0 2rem;
    margin-bottom: 2rem;
}
.hiringStandards .card-group{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.hiringStandards .card-group .card{
    background: #fff;
    margin: 1rem;
    padding: 2rem;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
    transition: 0.5s ease;
}
.hiringStandards .card-group .card:hover{
    transform: scale(1.02);
}
.hiringStandards .card-group .card h3{
    font-size: 25px;
    margin: 1rem auto;
}
.hiringStandards .card-group .card img{
    width: 100px;
}

.services{
    padding: 100px;
}
.services h1{
    margin: 1rem auto 2rem auto;
    width: 100%;
    text-align: center;
}
.services .timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}
.services   .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #363636;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}
.services  .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}
.services  .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #fff;
    border: 4px solid #c63346;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.services  .left {
    left: 0;
}
.services  .right {
    left: 50%;
}
.services  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #363636;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #363636;
}
.services  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #363636;
    border-width: 10px 10px 10px 0;
    border-color: transparent #363636 transparent transparent;
}
.services  .right::after {
    left: -16px;
}
.services  .content {
    padding: 20px 30px;
    background-color: #fff;
    border:1px solid #363636;
    position: relative;
    border-radius: 6px;
}
.services h3{
    margin-bottom: 0.5rem;
    margin-top: 0 !important;
}
.subscribe{
    padding: 50px;
    width: 100%;
    background: url('../assets/background/pattern2.png');
    background-position: center;
    text-align: center;
    position: relative;
    background: whitesmoke;
}
.subscribe h1{
    margin : auto auto 1rem auto;
}
.subscribe .form{
    display: flex;
    justify-content: center;
    align-items: center;
}
.subscribe .form input{
    padding: 0.5rem 2rem;
    border:1px solid #363636;
    border-radius: 50px;
    min-width: 100px;
    outline: none;
}
.subscribe .form input[type=text]{
    min-width: 500px;
}
.subscribe .form button{
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-left: 0.5rem;
}
.subscribe .form button img{
    width: 100%;
}
.subscribe p{
    margin: 1rem;
}
footer{
    width: 100%;
    color: #fff;
    background: #363636;
    padding: 0.5rem;
    text-align: center;
}
footer .text1{
    font-size: 16px !important;
}
.getintouch{
    background: url("../assets/background/hireback.jpg");
    background-size: cover;
    background-position: center;
    padding: 50px 100px;
    display: flex;
    align-items: center;
}
.getintouch a{
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.getintouch .social img{
    filter: invert(1);
    width: 30px;
}
.getintouch .social-group{
    margin: 0 auto;
    text-align: center;
}
.getintouch .social-group a{
    font-size: 20px;
}
.getintouch .social-group img{
    margin: 0.5rem;
    cursor: pointer;
}
.getintouch .button{
    padding: 0.5rem;
    text-align: center;
    background: #fff;
    color: #363636;
    width: 200px;
}
.getintouch .logo{
    width: 200px;
}