@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;700;800;900&display=swap');

:root{
    --primary: rgb(2, 43, 156);
    --off-white: rgba(241,241,241);
    --near-black: rgb(33, 37, 44);
    --yellow: rgba(254,206,10);
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
}
li{
    list-style: none;
}

@media screen and (max-width: 800px){
    section.social-media{
        background-color: var(--primary);
        height: 5vh;
        width: 100%;
    }
    section.social-media ul{
        display: flex;
        justify-content: flex-end;
        padding-right: 2%;
        margin-top: 0;
        padding-bottom: 1%;

    }
    .social-media ul li{
        margin-left: 0 10px;
    }
    .social-media ul li img{
        width: 15px;
        height: 15px;
        margin-left: 10px;
    }
    header{
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        background-color: black;
        color: white;
        padding: 2% 15%;
    }
    header div.logo-container{
        grid-column: 1/4 ;
        display: flex;
        align-items: center;

    }
    header div.logo-container img{
        width: 65%;
        margin-right: 10px;
    }
    header div span{
        font-size: 24px;
        font-weight: 800;
    }
    header nav, header button{
        display: none;
    }
    section.banner{
        /* height: 60vh; */
        /* min-height: 30vh; */
        width: 90%;
        background-image: url(/img/laptop-screen.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 15% 5%;
        /* padding-top: 10%; */
    }
    .banner img{
        width: 20%;
        margin: 0;
    }
    .banner h2{
        color: white;
        text-align: center;
        font-size: 34px;
        margin: 0px 0;
        width: 100%;
        letter-spacing: 10px;
        font-weight: 900;
    }
    .space-heading{
        color: rgb(177, 177, 177);
        letter-spacing: 2px;
        font-size: bold;
    }
    .banner p{
        width: 100%;
        font-size: 9px;
        text-align: center;
    }
    .banner div {
        text-align: end;
    }
    img.img-two{
        transform: rotate(180deg);
    }
    section.info{
        background-color: var(--off-white);
        padding: 5%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
    section.info h2{
        grid-column: 1/13;
        padding: 2%;
        font-size: 40px;
        margin: 0;
    }
    section.info h2 b{
        background-color: var(--primary);
        color: white
    }
    section.info p{
        grid-column: 1/13;
        padding: 2%;
        font-size: 10px;
        font-weight: bold;
    }
    section.info p span{
        color: grey;
        font-size: 9px;
        font-weight: 200;
    }
    .future-of-developing div.content-for-future{
        grid-column: 5/13;
        padding: 10%;
        background: var(--near-black);
    }
    div.content-for-future h2{
        margin: 10px 0;
        /* margin-top: 15px; */
        color: white;
        font-size: 30px;
        font-weight: bold;
    }
    div.content-for-future sub.note{
        color: white;
        letter-spacing: 3px;
        font-weight: 200;
        font-size: 9px;
    }
    div.content-for-future div.future-grid{
        margin: 15px auto;
    }
    .future-icon-text-container h4{
        color: var(--yellow);
        letter-spacing: 2px;
    }
    .future-icon-text-container p{
        line-height: 20px;
        color: white;
    }
    section.experience{
        padding: 5% 10%;
        background: var(--off-white);
        /* display: grid;
        grid-template-columns: repeat(3, 1fr); */
    }
    section.experience h1{
        /* grid-column: 1/4; */
        text-align: center;
        font-size: 40px;
    }
    section.experience div{
        text-align: center;
        padding: 3% 1%;
        border: solid 3px var(--primary);
        margin: 10px;
        background-color: white;
        /* height: 50px; */
    }
    section.experience div img{
        width: 30%;
    }
    section.experience div .experience-numbers{
        font-size: 20px;
        font-weight: bold;
    }
    section.experience div .experience-text{
        font-size: 13px;
        font-weight: 100;
        letter-spacing: 5px;
    }
    .testimonial-content{
        /* grid-column: 1/9; */
        padding: 15%;
        background-color: var(--near-black);
    }
    .testimonial-content h2{
        color: white;
        margin: 10px 0;
        /* margin-top: 15px; */
        color: white;
        font-size: 40px;
        font-weight: bold;
    }
    .testimonial-content .testimony-courasel .head-flex{
        display: flex;
        align-items: center;
    }
    .head-flex img{
        width: 100px;
        height: 100px;
        border-radius: 200px;
        margin-right: 20px;
    }
    .head-flex div p.name{
        color: var(--yellow);
        font-weight: bold;
        font-size: 16px;
        letter-spacing: 5px;
        margin-bottom: 0;
    }
    .head-flex div p.position{
        color: rgb(236, 236, 236);
        font-weight: 200;
        font-size: 12px;
        margin-top: 2px;
        letter-spacing: 2px;
    }
    .testimony-courasel .content{
        margin: 20px auto;
        color: rgb(214, 214, 214);
        font-size: 13px;
        font-weight: 300;
        line-height: 20px;
    }
    footer{
        background: black;
        padding: 5%;
    }
    footer div.footer-inner-container{
        display: grid;
        grid-template-columns: repeat(12,1fr);
    }
    .footer-inner-container div.logo-name{
        grid-column: 1/13;
        padding: auto 1%;
    }
    .footer-inner-container .logo-name img{
       opacity: 0.4;
        width: 30%; 
    }
    .logo-name p{
        color: rgb(119, 119, 119);
        font-size: 15px;
        font-weight: 400;
    }
    .information{
        grid-column: 1/13;
        padding-left: 10px;
    }
    .our-service{
        grid-column: 1/13;
        padding-left: 10px; 
    }
    div ul{
        padding: 0;
        margin-top: 40px;
    }
    li{
        list-style: none;
        color: rgb(196, 196, 196);
        margin-top: 10px;
        
    }
    p.copyright{
        color: rgb(206, 206, 206);
    }
    div.menu-body{
        position: relative;
        text-align: end;
    }
    ul.menu-list{
        margin-top: 0;
        position: fixed;
        right: 20px;
        bottom: 80px;
        background-color: var(--near-black);
        padding: 10%;
        /* width: 30%; */
        text-align: center;
        background: var(--primary);
        border-radius: 20px 20px 0 20px;
        visibility: hidden;
        opacity: 0;
        z-index: 3;
        transition: 1s ease-in;
    }
    ul.show-menu{
        opacity: 1;
        visibility: visible;
    }
    ul.menu-list li{
        margin-bottom: 10px;
    }
    ul.menu-list li a{
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 100;
    }
    span.menu{
        display: inline-block;
        padding: 10px 15px;
        position: fixed;
        bottom: 10px;
        right: 10px;
        /* height: 60px; */
        text-align: center;
        /* width: 60px; */
        background: var(--primary);
        color: white;
        font-size: 35px;
        border-radius: 120px;
        margin: 10px;
        align-items: center;
        z-index: 3;
        transition: .5s linear;
    }
    span.open-menu{
        transform: rotate(180deg);
    }
}
@media screen and (min-width: 801px){
    div.menu-body{
        display: none;
    }
    section.social-media{
        background-color: var(--primary);
        height: 5vh;
        width: 100%;
    }
    section.social-media ul{
        display: flex;
        justify-content: flex-end;
        padding-right: 2%;
        margin: 0;
    }
    .social-media ul li{
        margin-left: 0 10px;
    }
    .social-media ul li img{
        width: 20px;
        height: 20px;
        margin-left: 10px;
    }
    header{
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        background-color: black;
        color: white;
        padding: 2% 15%;
    }
    header div.logo-container{
        grid-column: 1/4 ;
        display: flex;
        align-items: center;

    }
    header div.logo-container img{
        width: 20%;
        margin-right: 10px;
    }
    header div span{
        font-size: 27px;
        font-weight: 800;
    }
    header nav{
        grid-column: 4/7;
        display: grid;
        grid-template-columns: repeat(12,1fr);
    }
    header nav span{
        margin: auto 10px;
    }
    header nav span a{
        text-decoration: none;
        transition: 0.5s ease;
        color: rgb(163, 163, 163);
    }
    header nav span a:hover{
       color: white;
    }
    header button{
        grid-column: 8/13;
        width: 40%;
        color: white;
        background-color: var(--primary);
        border: none;
        border-radius: 2px;
    }
    section.banner{
        /* height: 60vh; */
        min-height: 80vh;
        width: 90%;
        background-image: url(/img/laptop-screen.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        padding: 5%;
    }
    .banner img{
        width: 20%;
        margin: 0;
    }
    .banner h2{
        color: white;
        text-align: center;
        font-size: 120px;
        margin: 2px 0;
        width: 100%;
        letter-spacing: 20px;
        font-weight: 900;
    }
    .space-heading{
        color: rgb(177, 177, 177);
        letter-spacing: 10px;
        font-size: bold;
    }
    .banner p{
        width: 100%;
        text-align: center;
    }
    .banner div {
        text-align: end;
    }
    img.img-two{
        transform: rotate(180deg);
    }
    section.info{
        background-color: var(--off-white);
        padding: 5%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
    section.info h2{
        grid-column: 1/7;
        padding: 2%;
        font-size: 55px;
        margin: 0;
    }
    section.info h2 b{
        background-color: var(--primary);
        color: white
    }
    section.info p{
        grid-column: 7/13;
        padding: 2%;
        font-size: 20px;
        font-weight: bold;
    }
    section.info p span{
        color: grey;
        font-size: 15px;
        font-weight: 200;
    }
    section.future-of-developing{
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }
    .future-of-developing div.image-for-future{
        grid-column: 1/5;
        background-image: url(/img/mac.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .future-of-developing div.content-for-future{
        grid-column: 5/13;
        padding: 10%;
        background: var(--near-black);
    }
    div.content-for-future h2{
        margin: 30px 0;
        /* margin-top: 15px; */
        color: white;
        font-size: 70px;
        font-weight: bold;
    }
    div.content-for-future sub.note{
        color: white;
        letter-spacing: 3px;
        font-weight: 200;
        font-size: 13px;
    }
    div.content-for-future div.future-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        margin: 15px auto;
    }
    .future-icon-text-container{
        padding: 30px;
    }
    .future-icon-text-container h4{
        color: var(--yellow);
        letter-spacing: 4px;
    }
    .future-icon-text-container p{
        line-height: 20px;
        color: white;
    }
    section.experience{
        padding: 5% 10%;
        background: var(--off-white);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    section.experience h1{
        grid-column: 1/4;
        text-align: center;
        font-size: 70px;
    }
    section.experience div{
        text-align: center;
        padding: 3% 1%;
        border: solid 3px var(--primary);
        margin: 10px;
        background-color: white;
        /* height: 50px; */
    }
    section.experience div img{
        width: 30%;
    }
    section.experience div .experience-numbers{
        font-size: 25px;
        font-weight: bold;
    }
    section.experience div .experience-text{
        font-size: 20px;
        font-weight: 100;
        letter-spacing: 5px;
    }
    section.testimonial{
        display: grid;
        grid-template-columns: repeat(12,1fr);
    }
    .testimonial-content{
        grid-column: 1/9;
        padding: 15%;
        background-color: var(--near-black);
    }
    .testimonial-content h2{
        color: white;
        margin: 30px 0;
        /* margin-top: 15px; */
        color: white;
        font-size: 70px;
        font-weight: bold;
    }
    .testimonial-content .testimony-courasel .head-flex{
        display: flex;
        align-items: center;
    }
    .head-flex img{
        width: 100px;
        height: 100px;
        border-radius: 200px;
        margin-right: 20px;
    }
    .head-flex div p.name{
        color: var(--yellow);
        font-weight: bold;
        font-size: 16px;
        letter-spacing: 5px;
        margin-bottom: 0;
    }
    .head-flex div p.position{
        color: rgb(236, 236, 236);
        font-weight: 200;
        font-size: 12px;
        margin-top: 2px;
        letter-spacing: 2px;
    }
    .testimony-courasel .content{
        margin: 20px auto;
        color: rgb(214, 214, 214);
        font-size: 20px;
        font-weight: 300;
        line-height: 30px;
    }
    div.testimonial-image{
        background: url('https://images.pexels.com/photos/389819/pexels-photo-389819.jpeg?cs=srgb&dl=pexels-ken-tomita-389819.jpg&fm=jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        grid-column: 9/13;

    }
    footer{
        background: black;
        padding: 5%;
    }
    footer div.footer-inner-container{
        display: grid;
        grid-template-columns: repeat(12,1fr);
    }
    .footer-inner-container div.logo-name{
        grid-column: 1/4;
        padding: auto 1%;
    }
    .footer-inner-container .logo-name img{
       opacity: 0.4;
        width: 30%; 
    }
    .logo-name p{
        color: rgb(119, 119, 119);
        font-size: 20px;
        font-weight: 400;
    }
    .information{
        grid-column: 5/8;
        padding-left: 10px;
    }
    .our-service{
        grid-column: 8/11;
        padding-left: 10px; 
    }
    div ul{
        padding: 0;
        margin-top: 40px;
    }
    li{
        list-style: none;
        color: rgb(196, 196, 196);
        margin-top: 10px;
        
    }
    p.copyright{
        color: rgb(206, 206, 206);
    }
}

