* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

main {
    width: 96%;
    margin: 0 auto;
   
}

.hero {
    height: 85vh;
    width: 100%;
    background-image: url(/images/new-hero-img.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}

/* removing the section down from the top of the page */
header {
    padding-top: 1rem;
    display: flex;
}

.slogan {
    color:#fff;
    font-weight: 900;
    font-size: 3rem;
    align-self: center;
    margin-top: auto;
    margin-bottom: 3rem;
}

.slogan span {
    padding-left: 3rem;
}

/* logo dimensions */
.logo {
    width: 100%;
    margin-top: 1rem;
    width: 4rem;
    height: 5rem;
}

/* Hiding default button style to display icon only*/ 
.btn {
    border:none;
    background:none;
    cursor: pointer;
}

.lang-btn{
    font-size: 1.7rem;
}

.lang-btn a {
    color: #fff;
}

/* 
######################################
*/
/* 
Hiding the mobile navigation
*/
/* Hiding The closing icon */
/* .icon-mobile-nav[name="close-outline"] {
    display: none;
} */

/* giving the icons dimensions */
/* .icon-mobile-nav {
    width: 4rem;
    height: 4rem;
    color: #fff;
    padding-top: 1rem;
    padding-right: 1rem;
} */

/* remove the default list style */
/* .nav-list  {
    list-style: none;
} */


/* styling the nav links */
/* .nav-link:link, .nav-link:visited {
    text-decoration: none;
    color: #fff;
    padding: 1rem;
} */

/* Styling the nav links hover */
/* .nav-link:hover, .nav-link:active {
    margin: -1 px;
    border: 1px solid rgb(25,170,225);
} */

/* Hiding the nav list */
/* .nav-list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    transition: all .5s;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
} */

/* 
#########################################
*/

/* ##################################### */

.partners {
    display: flex;
    padding: 1rem;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background-color: #fafafa;
}

.partners-img {
    width: 4rem;
    height: 3rem;
}

/* ##################################### */

.services {
    margin-top: 3rem;
}

.services-card-container {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.services-heading {
    font-size: 2rem;
    text-align: center;
    font-weight: 900;
    margin-bottom: 5rem;
}

.card {
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f2f2f2;
    border-radius: 5%;
    align-self: center;
    margin: 0 auto;
    position: relative;
}

.card-circle {
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left:50%;
    transform: translate(-50%, -50%);
}

.services-card-img{
    width: 6rem;
    height: 6rem;
}

.card-heading {
    margin-top: auto;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ##################################### */

.projects {
    display: flex;
    flex-direction: column;
    margin-top: 7rem;
}

.projects-heading {
    font-size: 1.8rem;
    align-self: center;
    margin-bottom: 2rem;
    font-weight: 900;
    /* font-family: 'rockwell'; */
}


.project-card{
    margin-bottom:4rem;
    background-color: #19aaff;
    display: flex;
    flex-direction: column;
    border-radius: 2%;
    /* font-family: 'rockwell'; */
}


.project-card-img {
    width: 100%;
    height: 40vh;
    border-top-left-radius: 2%;
    border-top-right-radius: 2%;
}

.project-name {
    margin-top: 3rem;
    font-size: 1.5rem;
    text-align: center;
}


.projects-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
    margin-bottom: 1rem;
    border-radius: 5%;
    background-color: #566C75;
    color: #fff;
    /* font-family: 'rockwell'; */
    font-size: 1.5rem;
    font-weight: 600;
    padding:1rem 3rem;
    /* Added this to work with carousel */
    width:30%;
    align-self: center;
}



/* ##################################### */

.footer {
    width: 90%;
    display: flex;
    flex-direction: column;
    /* align-items: flex-start; */
    gap:1rem;
}

.footer-item-container {
    display: flex;
    align-items: center;
    justify-content: center;   
}

.footer-item-container a {
    color: #000;
}

footer img {
    width: 2rem;
    height: 2rem;
}


/* ##################################### */

.whatsapp-button {
    position: fixed;
}

.link{
    text-decoration: none;
}

.logo-whatsapp {
    width: 4rem;
    height: 4rem;
    color: #00BD07;
}
