@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans:wght@400;500;600;700;800&display=swap');

:root{
    --bg-color-dark: #3A4657;
    --bg-color-light: #F8F9ED;
    --text-color-primary: #CCDB2D;
    --text-color-secondary: #FAFFC0;
    --text-color-light: #FEFFF6;
    --font-primary: 'Open Sans';
    --font-secondary: 'Bebas Neue';
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-primary);
}

img{
    width: auto;
}

body{
    background-color: white;
}

/* ==================== Navbar ==================== */

#nav{
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 1rem 2rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
}

#nav .menu{
    display: flex;
    font-size: 1rem;
}

#nav .menu ul{
    display: flex;
    align-items: center;
}

#nav .menu ul li{
    margin: 0 1rem;
    list-style: none;
}

#nav .menu ul li a{
display: flex;
color: var(--text-color-light);
position: relative;
transition: all 0.5s ease-in-out;
text-decoration: none;
}

/* This is the line under the active link */
#nav .menu ul li a.active::after,
#nav .menu ul li a:hover::after{
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    height: 2px;
    width: 50%;
    background: var(--text-color-light);
    transition: all 0.5s ease-in-out;
}

#nav .menu button{
    background-color: var(--text-color-primary);
    color: var(--bg-color-dark);
    width: 123px;
    height: 36px;
    border: none;
    outline: none;
    border-radius: 2px;
    font-size: 1rem;
    cursor: pointer;
}

.hamburger_menu{
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    display: none;
}

.hamburger_menu_line{
    width: 100%;
    height: 3px;
    background-color: var(--text-color-light);
}


/* ==================== Landing Page ==================== */

header{
    background-color: var(--bg-color-light);
}

#header .header-content{
    height: 950px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
    background: linear-gradient(180deg, #3A4657 0%, #26436C 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: none;
}

#what-we-do-heading {
    text-align: center;
}

#header .header-content .info{
    width: 80%;
    display: flex;
    justify-content: space-between;
}

#header .header-content .info .texts{
    text-align: left;
}

#header .header-content .info .header-images{
    position: relative;
    /* border: 2px solid red; */
    width: 400px;
    transform: scale(1.2);
    bottom: 80px;
    left: -10px;
}

#header .header-content .info .header-images img{
    position: absolute;
    top: 100px;
    left: 0;
    opacity: 0;
    width: inherit;
    /* transform: translate(-50%, -50%); */
    /* animation: image1 2s alternate ease infinite; */

}

#header .header-content .info .header-images img.img1{
    animation: appear 1s forwards ease 1.6s, image1 4s alternate ease infinite;
}

#header .header-content .info .header-images img.img2{
    animation: appear 1s forwards ease 2.0s, image1 3.7s alternate ease infinite;
}

#header .header-content .info .header-images img.img3{
    animation: appear 1s forwards ease 2.5s, image1 4.5s alternate ease infinite;
}

@keyframes image1{
    to{
        transform: translateY(24px);
        /* transform: translate(0.1px, 0.1px) */
    }
}

@keyframes appear{
    to{
        opacity: 1;
    }
}


#header .header-content .info .texts h1{
    color: var(--text-color-secondary);
    font-family: var(--font-secondary);
    font-size: 110px;
}

#header .header-content .info .texts p{
    color: var(--text-color-light);
    font-size: 18px;
    width: 500px;
}

#header .header-content .info .texts a{
    color: var(--text-color-primary);
    font-size: 24px;
    border-bottom: 1px solid var(--text-color-primary);
    margin: 2rem 0;
    display: inline-block;
    cursor: pointer;
    /* transition: 0.4s; */
}

#header .header-content .info .texts a:hover{
    color: var(--text-color-secondary);
    border-bottom: 1px solid var(--text-color-secondary);
    /* transition: 0.4s; */
}

#header .header-content .prev-clients p{
    color: var(--text-color-light);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 1rem;
}

#header .header-content .prev-clients .logos{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header .header-content .prev-clients .logos img{
    margin-right: 3rem;
    width: auto;
}


#main{
    background-color: var(--bg-color-light);
    padding: 3rem 10rem;
}

#main img{
    width: auto;
}

#main h2.heading{
    color: var(--bg-color-dark);
    font-size: 46px;
    margin-bottom: 6rem;
    font-family: var(--font-secondary);
}

#main h2#what-we-do-heading {
    margin-left: 3rem;
}

#main .our-services{
    display: flex;
    /* width: 1190px; */
    max-width: 1315px;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
}

#main .our-services a{
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
    width:263px;
}

#main .our-services a h3 {
    color: rgba(58, 70, 87, 0.7);
}

#main .our-services a.active h3 {
    color: #3A4657;
}

#main .our-services a.active h3::after{
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--bg-color-dark);
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

#main .our-services .service:hover h3:after{
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--bg-color-dark);
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

#main .our-services a .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 250px; */
    text-align: center;
    /* margin: 0 .5rem; */
}

#main .our-services a .service h3 {
    font-family: inherit;
    font-weight: 700;
    font-size: 16px;
    width: max-content;
}

#main .our-services a.slide1 .service {
    width: 263px;
    height: 50px;
}

#main .our-services a.slide3 .service {
    width: 215px;
}

#main .our-services a.slide5 .service {
    width: 300px;
}

#main .our-services a .service img{
    margin-bottom: 1.5rem;
    height:50px;
}


#main #services{
    max-width: 1315px;
    height: 650px;
    margin: 0 auto;
    background-color: #F4F5EE;
    box-shadow: 4px 4px 17px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    /* padding: 3rem 2.5rem; */
    display: flex;
    align-items: center;
}

#main #services section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

#main #services section .texts{
    display: flex;
    justify-content: center;
    max-width: 468px;
    height: 600px;
    flex-direction: column;

}

#main #services section .texts #bg-image{
    
}

#main #services section .service-about { 
    height: 400px;
}

#main #services section .texts h2{
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 64px;   
}

#main #services section .texts p{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 2rem;
}

#main #services section .texts button {
    background-color: var(--text-color-primary);
    width: 250px;
    height: 60px;
    color: var(--bg-color-dark);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 24px;
    outline: none;
    border: none;
    box-shadow: 1px 1px 10px rgb(0 0 0 / 40%);
    margin-bottom: 1.5rem;
}


#main .our-work{
    display: flex;
    flex-direction: column;
    align-items: center;
}

#main .our-work h2.heading{
    margin-top: 6rem;
    font-family: var(--font-secondary);
    font-size: 46px;
    text-align: center;
    color: var(--text-color-primary);
}

#main .our-work .project{
    display: flex;
    justify-content: center;
    width: 90%;
    margin-bottom: 1.5rem;
}

#main .our-work .project.left_project {
    margin-right: 15rem;
}

#main .our-work .project.right_project {
    margin-left: 15rem;
}

#main .our-work .project .texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#main .our-work .project.left_project .texts {
    margin-left: 5rem;
}

#main .our-work .project.right_project .texts {
    margin-right: 5rem;
}

#main .our-work #home-portfolio-sam .texts {
    margin-top: 100px;
}

#main .our-work #home-portfolio-pinnacle .texts {
    margin-top: 50px;
}

/* #main .our-work .project .texts .bg-image{
    background-image: url('../imgs/index2/leaf.png');
    height: 235px;
    width: 500px;
    background-size: contain;
    background-repeat: no-repeat;
} */

/* #main .our-work .project .texts .bg-image.rev{
    background-image: url('../imgs/index2/leaf-reverse.png');
} */

#main .our-work .project .texts .bg-image.rev.bottom{
    display: none;
}

#main .our-work .project .texts h2{
    font-family: var(--font-secondary);
    font-size: 64px;
    margin-bottom: 1rem;
}

#main .our-work .project .texts p {
    font-weight: 700;
    font-size: 24px;
    font-family: var(--font-primary);
}

.proj-title {
    margin-bottom: 0;
}

.width-80 {
    width: 80% !important;
}

.width-55 {
    width: 55% !important;
}

#main .our-work button.more{
    border: 1px solid var(--bg-color-dark);
    background-color: transparent;
    border-radius: 4px;
    font-size: 24px;
    color: var(--bg-color-dark);
    width: 200px;
    height: 60px;
    margin-top: 9rem;
    margin-bottom: 5rem;
    cursor: pointer;
    outline: none;
    transition: 0.4s;
}

#main .our-work button.more:hover{
    color: var(--text-color-primary);
    /* border-color: var(--text-color-primary); */
    background-color: var(--bg-color-dark);
    transition: 0.4s;
}

#main .our-work .texts

.our-team-wrapper{
    background-color: var(--bg-color-light);
}

.our-team-wrapper #our-team{
    background-color: var(--bg-color-dark);
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 93%);

    padding-top: 4rem;
    padding-bottom: 2rem;
}

.our-team-wrapper #our-team .team_text {
    text-align: left;
}

.team-slider {
    margin-bottom: 70px;
}

#testimonials {
    background-color: var(--bg-color-light);
}

#our-team h2{
    color: var(--bg-color-light);
    text-align: center;
    font-family: var(--font-secondary);
    font-size: 46px;
    font-weight: 400;
    margin-bottom: 3rem;
}

#our-team h3 {
    margin-left: 0;
}

#our-team h4 {
    color: var(--bg-color-light);
    font-size: 18px;
    font-weight: 400;
    font-family: inherit;
    text-transform: capitalize;
    padding: 0;
    margin: 0;
}

#our-team .team .team-member{
    text-align: center;
}

#our-team .team .team-member .description p.name{
    font-family: var(--font-secondary);
    color: var(--text-color-light);
    font-size: 24px;
    margin: 1rem 0;
}

#our-team .team .team-member .description p.title{
    color: var(--text-color-light);
    font-size: 18px;
    font-weight: 400;
}

.slick-slide .images {
    display: flex;
    /* height: 500px; */
    flex-direction: column;
    justify-content: center;
}

#home-works {
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:75px;
}
/* #customer-reviews{
    background-color: #fff;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

#customer-reviews h2.heading{
    color: var(--bg-color-dark);
    text-align: center;
    font-size: 46px;
    font-family: var(--font-secondary);
    margin-bottom: 3rem;
}

#customer-reviews .top-review{
    text-align: center;
    border: 2px dashed var(--text-color-primary);
    width: 620px;
    padding: 0.5rem 1rem;
} */

.slick-track .slick-slide .texts {
    padding-left:85px;
}

#learn-more{
    background-color: var(--text-color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

#learn-more .container{
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 450px;
}

#learn-more .container h2{
    font-family: var(--font-secondary);
    color: var(--bg-color-dark);
    font-size: 64px;
    white-space: nowrap;
}

#learn-more .container .arrow{
    position: relative;
    /* bottom: 50px; */
    margin: 0 2rem;
    right: 30px;
}

#learn-more .container .arrow img{
    width: auto !important;
}

#learn-more .container .arrow .arrow-head {
    position: relative;
    left: 356px;
    bottom: 70px;
}

#learn-more .container button{
    width: 250px;
    height: 60px;
    font-size: 24px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
    cursor: pointer;
}

.images>img {
    height: 650px !important;
}


/* =================== FOOTER =================== */


.slick-dots {
    display: none;
  }



  @media screen and (max-width: 1340px) {
    #header .header-content .info{
        width: 95%;
    }

    #main #services section{
        /* height: 700px; */
    }

    #main #services section .images img{
        /* width: 450px !important; */
    }

    #learn-more .container{
        width: 90%;
    }

    .slick-track .slick-slide .texts {
        display:flex;
        flex-direction: column;
        justify-content: space-between;
    }

  }


  @media screen and (max-width: 1205px) {
    #header .header-content{
        height: 1010px;
    }

    #header .header-content .info{
        width: 95%;
    }

    #header .header-content .prev-clients .logos{
        flex-wrap: wrap;
        width: 860px;
        margin: auto;
        gap: 2rem;
    }

    #header .header-content .prev-clients .logos img{
        flex: none;
    }

    #header .header-content .info .texts h1{
        font-size: 90px;
    }

    #header .header-content .info .header-images{
        transform: scale(1);
        bottom: 80px;
    }

    #main #services section .images img{
        /* width: 420px !important; */
    }

    #main #services section .texts h2{
        font-size: 54px;
    }

    #main #services section .texts p{
        font-size: 14px;
    }

    #main #services section .texts .two-buttons{
        display: flex;
        gap: 2rem;
    }

    #main #services section .texts button{
        width: 235px;
        height: 50px;
        margin-bottom: 0;
    }

    #main #services{
        text-align: center;
        padding-top: 0;
        height: 845px;
    }

    #main #services section{
        flex-direction: column-reverse;
        text-align: center;
        gap: 0;
    }

    #main .our-services a .service{
        margin: 0 auto;
    }

    #main .our-work .project img.project-img{
        /* width: 450px; */
    }

    #learn-more .container .arrow{
        right: 30px;
    }

    #learn-more .container h2{
        white-space: normal;
    }

    .images>img {
        width: 365px !important;
        height: auto !important;
    }

    #main #services section .service-about {
        height: 250px;
    }
    .slick-track .slick-slide .texts {
        padding-left:0;
    }
    #services .slick-list {
        padding:0 20px 40px 20px;
        height:100%;
    }
    #main #services section .texts {
        height:100%;
        /* margin-top:15px; */
        justify-content: space-between;
    }
  }


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

    #header .header-content .info .texts h1{
        font-size: 70px;
    }

    #header .header-content .info .texts p{
        width: 415px;
    }

    #header .header-content .info .texts a{
        margin: 1rem 0;
        /* margin-bottom: 2rem; */
    }

    #header .header-content .info .header-images{
        bottom: 130px;
        left: 0px;
        transform: scale(0.9);
    }

    #header .header-content .prev-clients .logos{
        width: 740px;
    }

    .portfolio-item-container{
        flex-direction: column !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        
    }

    .home-container {
        gap:3rem !important;
    }

    .reversed-col{
        flex-direction: column-reverse !important;
    }

    #main{
        padding: 3rem 6rem;
    }

    #main .our-work{
        text-align: center;
    }

    #main .our-work .project{
        flex-direction: column;
        margin-top: 3rem;
    }

    #main .our-work .project .texts .bg-image.rev.top{
        display: none;
    }

    #main .our-work .project .texts .bg-image.rev.bottom{
        display: block;
    }

    #learn-more .container{
        flex-direction: column;
    }

    #learn-more .container .arrow{
        display: none;
    }

    #learn-more .container h2{
        text-align: center;
        font-size: 74px;
    }

    .slick-slider .slick-track, .slick-slider .slick-list{
        height: 100%;
    }

    #main #services section .texts .two-buttons{
        flex-direction: column;
        gap: 0rem;
    }

    .texts h2{
        font-size: 48px !important;
        margin-bottom:0;
    }

    #home-works {
        gap: 10px;
    }

    .portfolio-item-text {
        padding: 0;
    }

    .portfolio-item-bg{
        width: 100% !important;
    }

    .appWorkImgs img{
        max-width: auto !important;
        height: auto !important;
    }

    .appWorkImgs{
        flex-direction: column !important;
        justify-content: space-between;
    }

  }

  @media screen and (max-width: 840px){
    #main{
        padding: 3rem 4rem;
    }

    #nav .menu{
        display: none;
    }

    #nav .hamburger_menu{
        display: block;
    }

    #header .header-content{
        height: 650px;
    }

    #header .header-content .info .texts h1{
        font-size: 60px;
    }

    #header .header-content .info .texts p{
        font-size: 16px;
        width: 355px;
    }

    #header .header-content .info .header-images{
        transform: scale(0.8);
        left: -10px;
        bottom: 130px;
    }

    #header .header-content .info .texts a{
        font-size: 20px;
        
    }

    #header .header-content .prev-clients{
        display: none;
    }

    #main{
        padding: 3rem 3rem;
    }

    #main h2.heading{
        margin-bottom: 2rem;
        text-align: center;
    }

    #main #services section .images img{
        /* width: 350px !important; */
    }

    #main .our-services{
        width: 464px;
        flex-wrap: wrap;
        margin: 0 auto;
    }

    #main .our-work{
        text-align: center;
    }

    #main .our-work .project{
        flex-direction: column;
        margin-top: 3rem;
    }

    #main .our-work .project .texts .bg-image.rev.top{
        display: none;
    }

    #main .our-work .project .texts .bg-image.rev.bottom{
        display: block;
    }

    #main .our-work .project.right_project {
        margin-left: 5rem;
    }
  }


  @media screen and (max-width: 730px){
    #main{
        padding: 3rem 2rem;
    }

    #main #services{
        width: auto;
        height: 770px;
        padding: 0;
    }

    #main #services section{
        /* width: 600px; */
        padding: 0;
    }

    #header .header-content .info .header-images{
        bottom: 185px;
        left: -65px;
    }

    #main #services section .texts button{
        /* margin-bottom: 2rem; */
    }

    #main .our-work .project .texts .bg-image{
        width: 100%;
    }
  }

  @media screen and (max-width: 650px){
    #header .header-content .info .header-images{
        display: none;
    }

    #header .header-content .info{
        justify-content: center;
    }

    #header .header-content .info .texts{
        text-align: center;
    }
  }

  @media screen and (max-width: 535px){
    #main .our-services{
        width: 320px;
        width: 100%;
    }

    #main .our-services a{
        max-width: 200px;
    }

    #main .our-services a .service{
        width: auto;
    }

    #main #services section .texts h2{
        font-size: 44px;
    }

    #main .our-work .project .texts{
        margin-left: 0;
    }

    #learn-more .container h2{
        font-size: 60px;
    }

  }

  @media screen and (max-width: 470px){
    #main .our-services a{
        max-width: 140px;
    }
  }

