/* © 2023 WEBSITE OPERATIONS ALL RIGHTS RESERVED */

/* MAIN */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    scroll-behavior: smooth;
    list-style: none;
    text-decoration: none;
}

body{
    background-color: black;
}

:root{

    /* colors */
    --black-color: black;
    --white-color: white;
    --orange-color: orange;

    /* font size */
    --big-font:2.4rem;
    --h2-font:2.25rem;
    --p-font:0.9rem;

    /* font weight */


    /* padding distance */


    /* margin distance */





    /* @media queries & padding size distant

    @media queries width;
    XXl  -desktop-  =  1600px
    xl   -desktop-  =  1300px
    l    -desktop-  =  992px
    M    -ipad-     =  768px
    S    -mobiel-   =  600px
    xs   -mobiel-   =  360px

    width padding;
    XXl  -desktop- 1600px  =   10%
    xl   -desktop- 1300px  =    8%
    l    -desktop- 992px   =    7%
    M    -ipad-    768px   =  6.5%
    S    -mobiel-  600px   =    6%
    xs   -mobiel-  360px   =    5%

    height padding;
    XXl  -desktop- 1600px  =   70px
    xl   -desktop- 1300px  =   50px
    l    -desktop- 992px   =     px
    M    -ipad-    768px   =   60px
    S    -mobiel-  600px   =     px
    xs   -mobiel-  360px   =     px
    
    */

    --padding-width-desktop-xxl: 10%;
    --padding-width-laptop-xl: 8%;
    --padding-width-laptop-l: 7%;
    --padding-width-ipad-m: 6.5%;
    --padding-width-mobiel-s: 6%;
    --padding-width-mobiel-xs: 4%;

    --padding-height-desktop-xxl: 70px;
    --padding-height-laptop-xl: 50px;
    --padding-height-laptop-l: 60px;
    --padding-height-ipad-m: 6.5%;
    --padding-height-mobiel-s: 6%;
    --padding-height-mobiel-xs: 4%;


    /* grid */
    --grid-gap-desktop: 1.5rem;

    --grid-template-columns-desktop-3-: repeat(3, 1fr);
    --grid-template-columns-ipad-2: repeat(2, 1fr);
    --grid-template-columns-mobiel: 1fr;
}

::-webkit-scrollbar {
    width: 10px;
    background-color: black;
}

::-webkit-scrollbar-thumb {
    background-color: orange;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #ff8800;
}

::-webkit-scrollbar-button {
    display: none;
}

section{
    padding: 70px 17%;
}







/* ABOUT US HERO */
.about-us-hero{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    padding-top: 88px;
}

.about-us-hero-info{
    grid-column: 1 / span 2;
}

.about-us-hero-image img{
    max-width: 100%;
    width: 600px;
    height: auto;
}

.about-us-hero-text h2{
    color: #fff;
    font-size: var(--h2-font);
}

.about-us-hero-text p{
    color: #fff;
    margin: 0.8rem 0 1.8rem;
    line-height: 1.7;
}

.about-us-hero-text a{
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    background-color: orange;
    border-radius: 12px;
    transition: .4s;
    cursor: pointer;
}

.services-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 2rem;
    margin-top: 50px;
}

.services-list div{
    background-color: #262626;
    padding: 20px;
    font-weight: 300;
    border-radius: 10px;
    color: #fff;
    transition: background 0.5s, transform 0.5s;
}

.services-list div i{
    font-size: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.services-list div p{
    text-align: center;
}

.services-list div a:hover{
    text-decoration: underline;
}

.services-list div:hover{
    background: orange;
    transform: translateY(-10px);
}
/* SERVICES RESPONSIVE DESIGN */
@media(max-width: 1080px){
    .services-list{
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 15px;
        margin-top: 50px;
    }
    #services-list-box1{
        grid-row-start: 1;
        grid-row-end: 2;
    }
    #services-list-box2{
        grid-row-start: 3;
        grid-row-end: 4;
    }
    #services-list-box3{
        grid-row-start: 5;
        grid-row-end: 6;
    }
}


/* WHY WEBSITE OPERATIONS */
.why-website-operations{
    align-items: center;
    justify-content: center;
}

.why-website-operations p{
    color: #fff;
    margin: 0.8rem 0 1.8rem;
    line-height: 1.7;
}

/* OUR TEAM */
.our-team{

}

.heading{
    text-align: center;
}

.heading span{
    color: orange;
    font-weight: 600;
}

.heading h2{
    color: #fff;
    font-size: var(--h2-font);
}

.our-team-container{
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    grid-gap: 1.5rem;
    margin-top: 50px;
    text-align: center;
}

.our-team-container div{

}

.our-team-container img{
    max-width: 100%;
    width: 280px;
    height: auto;
    border-radius: 6px;
}

.our-team-container p{
    color: #fff;
    margin: 0.8rem 0 1.8rem;
    line-height: 1.7;
}

.our-team-container div a{
    color: #fff;
    display: inline-block;
    padding: 5px 8px;
    font-weight: 600;
    font-size: 22px;
    background-color: #009FE3;;
    border-radius: 8px;
}







/* MAIN RESPONSIVE DESIGN */
@media (max-width: 1560px) {
    :root{
        --big-font:3rem;
        --h2-font:2rem;
    }
}

@media (max-width: 720px) {
    .about-us-hero{
        grid-template-columns: 1fr;
        grid-gap: 1.5rem;
        min-height: 100vh;
        align-items: center;
    }
    .about-us-hero-info {
        grid-column: auto;
    }
    .services-list div{
        padding: 40px;
    }
    .our-team-container{
        grid-template-columns: 1fr;
    }
}