:root {
    /* --theme-color: #f9b707; */
    --theme-color: rgb(172, 2, 2);
    --second-theme-color: #272727;
    --text-main-color: #ffffff;
    --text-second-color: #616060;
}

.hero-service-header {
    position: relative;
    color: var(--text-main-color);
    font-size: 3.5rem;
    transform: translateY(0);
    opacity: 1;
    transition: all .5s ease;
    text-align: center;
}

#hero-section-main {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(8, 8, 8, 0.4)), url('../img/servicesImg/servicesLandingpage.jpeg');
}

#services-section {
    /* background-color: orange; */
    width: 90%;
    margin: 0 auto;
    margin-bottom: 4em;
}

.service-selector-cotainer {
    display: flex;
    justify-content: space-around;
    /* margin-top: .5em; */
    /* background-color: #e7e6e6cb; */
    padding: .5em 0;
}

.service-btn-container {
    border: 1px solid var(--text-second-color);
    /* padding: 1em; */
    cursor: pointer;
}

.service-btn-container:nth-child(2) {
    border-left: none;
    border-right: none;
}

.service-btn-icon {
    text-align: center;
    margin-bottom: .8em;
    padding-top: .8em;
}

.service-btn-icon i {
    font-size: 2.5rem;
    color: var(--text-second-color);
}

.service-btn-icon i.active {
    color: var(--theme-color);
}

.service-btn-header {
    padding: .2em .3em;
}

.service-btn-header.active {
    border-bottom: 6px solid var(--theme-color);
}

.service-btn-header h2 {
    color: var(--text-second-color);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.service-btn-header h2.active {
    color: black;
}

.service-btn-container:hover i {
    color: var(--theme-color);
}

.service-btn-container:hover h2 {
    color: black;
}

.services-service-header-container {
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #272727;
}

.services-service-header {
    font-size: 2.4rem;
}

.services-service-header.active {
    animation: fade .8s ease-in-out 1;
}

@keyframes serviceHeaderAni {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0);
    }
}

.services-service-container {
    margin-top: 2em;
}

.services-service-card {
    min-height: 350px;
    width: 80%;
    margin: 0 auto;
    border: 1px solid var(--text-second-color);
    padding: 1em;
    display: flex;
    align-items: center;
    margin-bottom: 1em;
    animation: fade .6s 1;
}

@keyframes fade {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.project-hide {
    transform: translateY(25px);
    opacity: 0;
    transition: all .6s ease;
}

.card-hide {
    display: none;
}

.center-service-content {
    margin-left: 6em;
}

.center-service-header {
    margin-bottom: 1em;
}

.center-service-header h3 {
    font-size: 1.8rem;
    color: var(--theme-color);
}

.center-service-header h3 i {
    font-size: .9rem;
    transform: translateY(-4px);
}

.service-content-all-services {
    display: flex;
}

.service-content-all-services ul:last-child {
    margin-left: 4em;
}

.service-content-all-services ul li {
    list-style: circle;
    margin: 1em 0;
    font-weight: 550;
}

.service-hide {
    display: none;
}


/* HOW IT WORKS START */

.how-it-works-main-container,
#latest-work-section {
    width: 72%;
    margin: 0 auto;
    margin-top: 4em;
}

.how-it-works-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.how-it-works-card {
    min-width: 250px;
    max-width: 250px;
    /* border: 1px solid var(--text-second-color); */
    box-shadow: 1px 2px 3px 2px rgba(8, 8, 8, 0.4);
    transition: all .3s ease;
    cursor: pointer;
    margin: 2em;
}

.how-it-works-card:hover {
    transform: translateY(-15px);
}

.how-it-works-card-img-container {
    width: 70%;
    margin: 1em auto;
}

.how-it-works-card-img-container img {
    width: 100%;
}

.how-it-works-card-dis {
    border-top: 2px solid var(--theme-color);
    border-top: 2px solid var(--text-second-color);
    padding: .5em;
}

.how-it-works-card-dis h3 {
    font-size: 1.5rem;
    margin: .5em 0;
    color: var(--theme-color);
    /* text-align: center; */
    display: flex;
}

.num {
    margin-right: .4em;
}

.how-it-works-card-dis p {
    font-size: 1.2rem;
    line-height: 1.5em;
}


/*  WHY CHOOSE US START*/

.why-us-para {
    font-size: 1.3rem;
    margin-top: 1em;
    text-align: center;
    line-height: 1.5em;
}

.color {
    color: var(--theme-color);
}

.why-us-main-container {
    width: 90%;
    margin: 0 auto;
    margin-top: 1em;
    display: flex;
    justify-content: space-around;
}

.why-us-container li {
    list-style: none;
    font-size: 1.4rem;
    margin: 1em 0;
}

.why-us-container li i {
    margin-right: .5em;
    color: var(--theme-color);
}